annotate pom.xml @ 4:80126e22fd02

Modified CassandraBulletInBoard's constructor for change consistency level
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 09 Jan 2014 23:16:00 +0900
parents babb46537b8a
children 2deeb26967e4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
3 <modelVersion>4.0.0</modelVersion>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
4
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
5 <groupId>jp.ac.u_ryukyu.ie.cr.shoshi.jungle</groupId>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
6 <artifactId>bulletinboard</artifactId>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
7 <version>0.0.1-SNAPSHOT</version>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
8 <packaging>jar</packaging>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
9
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
10 <name>bulletinboard</name>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
11 <url>http://maven.apache.org</url>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
12
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
13 <properties>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
15 </properties>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
16
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
17 <dependencies>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
18 <dependency>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
19 <groupId>junit</groupId>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
20 <artifactId>junit</artifactId>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
21 <version>3.8.1</version>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
22 <scope>test</scope>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
23 </dependency>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
24 <dependency>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
25 <groupId>org.mortbay.jetty</groupId>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
26 <artifactId>jetty</artifactId>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
27 <version>6.1.26</version>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
28 </dependency>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
29 <dependency>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
30 <groupId>org.hectorclient</groupId>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
31 <artifactId>hector-core</artifactId>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
32 <version>1.1-2</version>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
33 </dependency>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
34 <dependency>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
35 <groupId>org.apache.cassandra</groupId>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
36 <artifactId>cassandra-all</artifactId>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
37 <version>1.2.1</version>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
38 </dependency>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
39 <dependency>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
40 <groupId>com.eaio.uuid</groupId>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
41 <artifactId>uuid</artifactId>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
42 <version>3.3</version>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
43 </dependency>
1
babb46537b8a added junglebulletinboard
Shoshi TAMAKI
parents: 0
diff changeset
44 <dependency>
babb46537b8a added junglebulletinboard
Shoshi TAMAKI
parents: 0
diff changeset
45 <groupId>jungle</groupId>
babb46537b8a added junglebulletinboard
Shoshi TAMAKI
parents: 0
diff changeset
46 <artifactId>jungle-core</artifactId>
babb46537b8a added junglebulletinboard
Shoshi TAMAKI
parents: 0
diff changeset
47 <version>0.0.1-SNAPSHOT</version>
babb46537b8a added junglebulletinboard
Shoshi TAMAKI
parents: 0
diff changeset
48 </dependency>
0
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
49 </dependencies>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
50 <repositories>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
51 <repository>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
52 <id>eaio.com</id>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
53 <url>http://eaio.com/maven2</url>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
54 </repository>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
55 </repositories>
e7a9b10dd844 added cassandra bulletin board
Shoshi TAMAKI
parents:
diff changeset
56 </project>