44 lines
1.3 KiB
XML
44 lines
1.3 KiB
XML
<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>
|
|
<groupId>org.bench4q</groupId>
|
|
<artifactId>bench4q-agent</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>Bench4Q Agent</name>
|
|
<description>Bench4Q Agent</description>
|
|
<organization>
|
|
<name>TCSE, ISCAS</name>
|
|
</organization>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.11</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-server</artifactId>
|
|
<version>8.1.11.v20130520</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-servlet</artifactId>
|
|
<version>8.1.11.v20130520</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-webmvc</artifactId>
|
|
<version>3.2.3.RELEASE</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
<version>1.9.12</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<finalName>bench4q-agent</finalName>
|
|
</build>
|
|
</project> |