38
|
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-network</groupId>
|
|
4 <artifactId>jungle-network</artifactId>
|
|
5 <version>0.0.1-SNAPSHOT</version>
|
|
6 <build>
|
|
7 <sourceDirectory>src</sourceDirectory>
|
|
8 <plugins>
|
|
9 <plugin>
|
|
10 <artifactId>maven-compiler-plugin</artifactId>
|
|
11 <version>3.0</version>
|
|
12 <configuration>
|
|
13 <source>1.6</source>
|
|
14 <target>1.6</target>
|
|
15 </configuration>
|
|
16 </plugin>
|
|
17 </plugins>
|
|
18 </build>
|
|
19 <properties>
|
|
20 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
21 </properties>
|
|
22 <dependencies>
|
|
23 <dependency>
|
|
24 <groupId>junit</groupId>
|
|
25 <artifactId>junit</artifactId>
|
|
26 <version>3.8.1</version>
|
|
27 </dependency>
|
|
28 <dependency>
|
|
29 <groupId>org.mortbay.jetty</groupId>
|
|
30 <artifactId>jetty</artifactId>
|
|
31 <version>6.1.26</version>
|
|
32 </dependency>
|
|
33 <dependency>
|
|
34 <groupId>org.hectorclient</groupId>
|
|
35 <artifactId>hector-core</artifactId>
|
|
36 <version>1.1-2</version>
|
|
37 </dependency>
|
|
38 <dependency>
|
|
39 <groupId>org.apache.cassandra</groupId>
|
|
40 <artifactId>cassandra-all</artifactId>
|
|
41 <version>1.2.1</version>
|
|
42 </dependency>
|
|
43 <dependency>
|
|
44 <groupId>com.eaio.uuid</groupId>
|
|
45 <artifactId>uuid</artifactId>
|
|
46 <version>3.2</version>
|
|
47 </dependency>
|
|
48 <dependency>
|
|
49 <groupId>jungle</groupId>
|
|
50 <artifactId>jungle-core</artifactId>
|
|
51 <version>0.0.1-SNAPSHOT</version>
|
|
52 </dependency>
|
|
53 </dependencies>
|
|
54 </project>
|