61 lines
1.6 KiB
XML
61 lines
1.6 KiB
XML
<?xml version="1.0"?>
|
|
<project
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.bench4q</groupId>
|
|
<artifactId>bench4q-recorder</artifactId>
|
|
<version>1.0-Beta</version>
|
|
<name>Bench4q Recorder</name>
|
|
<url>http://maven.apache.org</url>
|
|
<properties>
|
|
<name>TCSE, ISCAS</name>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
<dependencies>
|
|
<!-- for test -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.11</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- parse the dom tree of response html -->
|
|
<dependency>
|
|
<groupId>org.jsoup</groupId>
|
|
<artifactId>jsoup</artifactId>
|
|
<version>1.7.3</version>
|
|
</dependency>
|
|
|
|
<!-- just for the component annotation -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
<version>3.2.5.RELEASE</version>
|
|
</dependency>
|
|
|
|
<!-- for log -->
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.17</version>
|
|
</dependency>
|
|
|
|
<!-- for bench4q share models -->
|
|
<dependency>
|
|
<groupId>org.bench4q</groupId>
|
|
<artifactId>bench4q-share</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- for file utils -->
|
|
<dependency>
|
|
<groupId>org.apache.portals.jetspeed-2</groupId>
|
|
<artifactId>jetspeed-fileutils-maven-plugin</artifactId>
|
|
<version>2.2.2</version>
|
|
<type>maven-plugin</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|