0
|
1 <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">
|
|
2 <modelVersion>4.0.0</modelVersion>
|
|
3 <groupId>jungle-bench</groupId>
|
|
4 <artifactId>jungle-bench</artifactId>
|
|
5 <version>0.0.1-SNAPSHOT</version>
|
|
6 <build>
|
|
7 <sourceDirectory>src/main/java</sourceDirectory>
|
|
8 <testSourceDirectory>src/test/java</testSourceDirectory>
|
|
9 <plugins>
|
|
10 <plugin>
|
|
11 <artifactId>maven-compiler-plugin</artifactId>
|
|
12 <version>2.3.2</version>
|
|
13 <configuration>
|
|
14 <source>1.7</source>
|
|
15 <target>1.7</target>
|
|
16 </configuration>
|
|
17 </plugin>
|
|
18 </plugins>
|
|
19 </build>
|
|
20 <dependencies>
|
|
21
|
|
22 <dependency>
|
|
23 <groupId>jungle</groupId>
|
|
24 <artifactId>jungle-core</artifactId>
|
|
25 <version>0.0.3-SNAPSHOT</version>
|
|
26 </dependency>
|
|
27 <dependency>
|
|
28 <groupId>junit</groupId>
|
|
29 <artifactId>junit</artifactId>
|
|
30 <version>4.7</version>
|
|
31 </dependency>
|
|
32 </dependencies>
|
|
33 </project> |