<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.ntlab</groupId> <artifactId>SproutServerMicro</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>SproutServerMicro</name> <build> <finalName>SproutServerMicro</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <inherited>true</inherited> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>org.glassfish.jersey</groupId> <artifactId>jersey-bom</artifactId> <version>${jersey.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-container-servlet-core</artifactId> <!-- use the following artifactId if you don't need servlet 2.x compatibility --> <!-- artifactId>jersey-container-servlet</artifactId --> </dependency> <!-- https://mvnrepository.com/artifact/net.arnx/jsonic --> <dependency> <groupId>net.arnx</groupId> <artifactId>jsonic</artifactId> <version>1.3.0</version> </dependency> <!-- radishに関するライブラリ --> <!-- j3dcore.jar --> <dependency> <groupId>j3dcore.jar</groupId> <artifactId>j3dcore.jar</artifactId> <scope>system</scope> <version>1.5.1</version> <systemPath>${basedir}/lib/j3dcore.jar</systemPath> </dependency> <!-- cv97r140.jar --> <dependency> <groupId>cv97r140.jar</groupId> <artifactId>cv97r140.jar</artifactId> <scope>system</scope> <version>1.5.1</version> <systemPath>${basedir}/lib/cv97r140.jar</systemPath> </dependency> <!-- j3dutils.jar --> <dependency> <groupId>j3dutils.jar</groupId> <artifactId>j3dutils.jar</artifactId> <scope>system</scope> <version>1.5.1</version> <systemPath>${basedir}/lib/j3dutils.jar</systemPath> </dependency> <!-- vecmath.jar --> <dependency> <groupId>vecmath.jar</groupId> <artifactId>vecmath.jar</artifactId> <scope>system</scope> <version>1.5.1</version> <systemPath>${basedir}/lib/vecmath.jar</systemPath> </dependency> </dependencies> <properties> <jersey.version>2.26-b03</jersey.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>