0
|
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
166
|
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>
|
0
|
4
|
166
|
5 <groupId>jungle</groupId>
|
|
6 <artifactId>jungle-core</artifactId>
|
|
7 <version>0.0.3-SNAPSHOT</version>
|
|
8 <packaging>jar</packaging>
|
0
|
9
|
166
|
10 <name>jungle-core</name>
|
|
11 <url>http://maven.apache.org</url>
|
0
|
12
|
166
|
13 <properties>
|
|
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
15 </properties>
|
0
|
16
|
166
|
17 <dependencies>
|
|
18 <dependency>
|
|
19 <groupId>junit</groupId>
|
|
20 <artifactId>junit</artifactId>
|
|
21 <version>4.7</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 <dependency>
|
|
35 <groupId>org.functionaljava</groupId>
|
|
36 <artifactId>functionaljava</artifactId>
|
|
37 <version>4.2-beta-1</version>
|
|
38 </dependency>
|
|
39
|
|
40 <dependency>
|
|
41 <groupId>org.apache.maven.surefire</groupId>
|
|
42 <artifactId>surefire-junit4</artifactId>
|
|
43 <version>2.13</version>
|
|
44 </dependency>
|
|
45 </dependencies>
|
|
46 <build>
|
|
47 <plugins>
|
|
48 <plugin>
|
|
49 <groupId>org.apache.maven.plugins</groupId>
|
|
50 <artifactId>maven-compiler-plugin</artifactId>
|
|
51 <configuration>
|
|
52 <source>1.8</source>
|
|
53 <target>1.8</target>
|
|
54 </configuration>
|
|
55 </plugin>
|
|
56 </plugins>
|
|
57 </build>
|
0
|
58 </project>
|