0
|
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
3 <modelVersion>4.0.0</modelVersion>
|
|
4
|
|
5 <groupId>jungle</groupId>
|
|
6 <artifactId>jungle-core</artifactId>
|
|
7 <version>0.0.1-SNAPSHOT</version>
|
|
8 <packaging>jar</packaging>
|
|
9
|
|
10 <name>jungle-core</name>
|
|
11 <url>http://maven.apache.org</url>
|
|
12
|
|
13 <properties>
|
|
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
15 </properties>
|
|
16
|
|
17 <dependencies>
|
|
18 <dependency>
|
|
19 <groupId>junit</groupId>
|
|
20 <artifactId>junit</artifactId>
|
|
21 <version>3.8.1</version>
|
|
22 <scope>test</scope>
|
|
23 </dependency>
|
|
24 <dependency>
|
|
25 <groupId>com.google.guava</groupId>
|
|
26 <artifactId>guava</artifactId>
|
|
27 <version>12.0</version>
|
|
28 </dependency>
|
|
29 <dependency>
|
|
30 <groupId>commons-collections</groupId>
|
|
31 <artifactId>commons-collections</artifactId>
|
|
32 <version>3.2.1</version>
|
|
33 </dependency>
|
|
34 </dependencies>
|
2
|
35 <build>
|
|
36 <plugins>
|
|
37 <plugin>
|
|
38 <groupId>org.apache.maven.plugins</groupId>
|
|
39 <artifactId>maven-compiler-plugin</artifactId>
|
|
40 <configuration>
|
|
41 <source>1.6</source>
|
|
42 <target>1.6</target>
|
|
43 </configuration>
|
|
44 </plugin>
|
|
45 </plugins>
|
|
46 </build>
|
0
|
47 </project>
|