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).
svn checkout https://svn.ihe-europe.net/gazelle/validators/packaging/pixelmed-jar/trunk 
(svn+ssh for commit automatic rights)
Example :
	<dependency>
            <groupId>com.pixelmed</groupId>
            <artifactId>dicom</artifactId>
            <version>20220618</version>
            <exclusions>
                <exclusion>
                    <groupId>hsqldb</groupId>
                    <artifactId>hsqldb</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
cp target/Pixelmed-jar-VERSION-script.zip /opt/pixelmed/
unzip /opt/pixelmed/Pixelmed-jar-VERSION-script.zip
chown jboss:jboss-admin -R /opt/pixelmed
vim /opt/pixelmed/bin/pixelmedValidator.sh
svn checkout https://svn.ihe-europe.net/gazelle/Maven/DICOMEVS-Api/trunk
Example :
	<dependency>
            <groupId>com.pixelmed</groupId>
            <artifactId>dicom</artifactId>
            <version>20220618</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>
 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