Get the latest version of pixelmed with this link : http://www.dclunie.com/pixelmed/software/index.html
If it is not up-to-date, push the pixelmed.jar file to nexus as an artifact at 3rd party > com > pixelmed > dicom (administration rights needed).
git clone https://gitlab.inria.fr/gazelle/public/validation/dicomevsapi
Example :
<dependency>
<groupId>com.pixelmed</groupId>
<artifactId>dicom</artifactId>
<version>20251203</version>
<exclusions>
<exclusion>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
</exclusion>
</exclusions>
</dependency>
git clone https://gitlab.inria.fr/gazelle/applications/test-execution/validator/EVSClient.git
Example :
<dependency>
<groupId>net.ihe.gazelle</groupId>
<artifactId>DICOMEVS-Api</artifactId>
<version>3.0.14</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
</exclusions>
</dependency>
git clone https://gitlab.inria.fr/gazelle/private/industrialization/docker/gazelle-evs
In the Dockerfile, in the “# Install dicom3tools” section update the dicom3tools version link to the latest one from https://www.dclunie.com/dicom3tools/workinprogress/index.html
apt-get install xutils-dev man-db
Get the latest version of Dicom3tools with this link : https://www.dclunie.com/dicom3tools/workinprogress/index.html
./Configure
imake -I./config
make World
make install
make install.man
You should then get the binaries created in /usr/local/bin folder.
For EVSClient V5 and prior:
Create the /opt/dicom3tools folder
Create symbolic links on dcdump and dciodvfy in this newly created folder.
cd /opt/dicom3tools
ln -s /usr/local/bin/dcdump dcdump
ln -s /usr/local/bin/dciodvfy dciodvfy