<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir</artifactId> <version>1.4-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>hapi-fhir-base-testmindeps-server</artifactId> <packaging>jar</packaging> <name>HAPI FHIR - Minimal Dependency Test - Server</name> <dependencies> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty</artifactId> <version>6.1.26</version> <!-- Use an old version --> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.7</version> </dependency> <!-- Woodstox note: The hapi-fhir-base-testmindeps-client project includes no Woodstox at all, so that we use the StAX version that's bundled with the JDK. The hapi-fhir-base-testmindeps-server project uses a really old Woodstox version so that we test that. --> <dependency> <groupId>org.codehaus.woodstox</groupId> <artifactId>wstx-asl</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-base</artifactId> <version>1.4-SNAPSHOT</version> <exclusions> <exclusion> <artifactId>woodstox-core-asl</artifactId> <groupId>org.codehaus.woodstox</groupId> </exclusion> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-structures-dstu</artifactId> <version>1.4-SNAPSHOT</version> <exclusions> <exclusion> <artifactId>woodstox-core-asl</artifactId> <groupId>org.codehaus.woodstox</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-structures-dstu2</artifactId> <version>1.4-SNAPSHOT</version> <exclusions> <exclusion> <artifactId>woodstox-core-asl</artifactId> <groupId>org.codehaus.woodstox</groupId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>