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>jp.ac.u_ryukyu.ie.cr.shoshi.jungle</groupId>
|
|
6 <artifactId>bulletinboard</artifactId>
|
|
7 <version>0.0.1-SNAPSHOT</version>
|
|
8 <packaging>jar</packaging>
|
|
9
|
|
10 <name>bulletinboard</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>org.mortbay.jetty</groupId>
|
|
26 <artifactId>jetty</artifactId>
|
|
27 <version>6.1.26</version>
|
|
28 </dependency>
|
|
29 <dependency>
|
|
30 <groupId>org.hectorclient</groupId>
|
|
31 <artifactId>hector-core</artifactId>
|
|
32 <version>1.1-2</version>
|
|
33 </dependency>
|
|
34 <dependency>
|
|
35 <groupId>org.apache.cassandra</groupId>
|
|
36 <artifactId>cassandra-all</artifactId>
|
|
37 <version>1.2.1</version>
|
|
38 </dependency>
|
|
39 <dependency>
|
|
40 <groupId>com.eaio.uuid</groupId>
|
|
41 <artifactId>uuid</artifactId>
|
|
42 <version>3.3</version>
|
|
43 </dependency>
|
1
|
44 <dependency>
|
|
45 <groupId>jungle</groupId>
|
|
46 <artifactId>jungle-core</artifactId>
|
|
47 <version>0.0.1-SNAPSHOT</version>
|
|
48 </dependency>
|
0
|
49 </dependencies>
|
|
50 <repositories>
|
|
51 <repository>
|
|
52 <id>eaio.com</id>
|
|
53 <url>http://eaio.com/maven2</url>
|
|
54 </repository>
|
|
55 </repositories>
|
|
56 </project>
|