comparison pom.xml @ 0:e7a9b10dd844

added cassandra bulletin board
author Shoshi TAMAKI
date Thu, 07 Feb 2013 00:26:21 +0900
parents
children babb46537b8a
comparison
equal deleted inserted replaced
-1:000000000000 0:e7a9b10dd844
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>
44 </dependencies>
45 <repositories>
46 <repository>
47 <id>eaio.com</id>
48 <url>http://eaio.com/maven2</url>
49 </repository>
50 </repositories>
51 </project>