annotate pom.xml @ 86:bcaf28f8244d

Added PersistentChageList and PersistentJournalTest
author one
date Tue, 29 Oct 2013 16:52:12 +0900
parents b0af3960917f
children 11ad00323206
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
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">
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
2 <modelVersion>4.0.0</modelVersion>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
3 <groupId>jungle-network</groupId>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
4 <artifactId>jungle-network</artifactId>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
5 <version>0.0.1-SNAPSHOT</version>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
6 <build>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
7 <sourceDirectory>src</sourceDirectory>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
8 <plugins>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
9 <plugin>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
10 <artifactId>maven-compiler-plugin</artifactId>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
11 <version>3.0</version>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
12 <configuration>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
13 <source>1.6</source>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
14 <target>1.6</target>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
15 </configuration>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
16 </plugin>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
17 </plugins>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
18 </build>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
19 <properties>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
20 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
21 </properties>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
22 <dependencies>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
23 <dependency>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
24 <groupId>junit</groupId>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
25 <artifactId>junit</artifactId>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
26 <version>3.8.1</version>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
27 </dependency>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
28 <dependency>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
29 <groupId>org.mortbay.jetty</groupId>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
30 <artifactId>jetty</artifactId>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
31 <version>6.1.26</version>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
32 </dependency>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
33 <dependency>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
34 <groupId>org.hectorclient</groupId>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
35 <artifactId>hector-core</artifactId>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
36 <version>1.1-2</version>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
37 </dependency>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
38 <dependency>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
39 <groupId>org.apache.cassandra</groupId>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
40 <artifactId>cassandra-all</artifactId>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
41 <version>1.2.1</version>
46
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
42 <exclusions>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
43 <exclusion>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
44 <groupId>org.slf4j</groupId>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
45 <artifactId>slf4j-log4j12</artifactId>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
46 </exclusion>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
47 <exclusion>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
48 <groupId>log4j</groupId>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
49 <artifactId>log4j</artifactId>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
50 </exclusion>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
51 </exclusions>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
52
38
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
53 </dependency>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
54 <dependency>
46
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
55 <groupId>com.github.stephenc.eaio-uuid</groupId>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
56 <artifactId>uuid</artifactId>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
57 <version>3.3.0</version>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
58 </dependency>
55
25edf76b65dc modified pom.xml. remove functionalJava library
one
parents: 46
diff changeset
59 <dependency>
25edf76b65dc modified pom.xml. remove functionalJava library
one
parents: 46
diff changeset
60 <groupId>org.functionaljava</groupId>
25edf76b65dc modified pom.xml. remove functionalJava library
one
parents: 46
diff changeset
61 <artifactId>functionaljava</artifactId>
25edf76b65dc modified pom.xml. remove functionalJava library
one
parents: 46
diff changeset
62 <version>3.1</version>
25edf76b65dc modified pom.xml. remove functionalJava library
one
parents: 46
diff changeset
63 </dependency>
86
bcaf28f8244d Added PersistentChageList and PersistentJournalTest
one
parents: 68
diff changeset
64
bcaf28f8244d Added PersistentChageList and PersistentJournalTest
one
parents: 68
diff changeset
65 <!--
bcaf28f8244d Added PersistentChageList and PersistentJournalTest
one
parents: 68
diff changeset
66 <dependency>
bcaf28f8244d Added PersistentChageList and PersistentJournalTest
one
parents: 68
diff changeset
67 <groupId>org.msgpack</groupId>
bcaf28f8244d Added PersistentChageList and PersistentJournalTest
one
parents: 68
diff changeset
68 <artifactId>msgpack</artifactId>
bcaf28f8244d Added PersistentChageList and PersistentJournalTest
one
parents: 68
diff changeset
69 <version>0.6.8</version>
bcaf28f8244d Added PersistentChageList and PersistentJournalTest
one
parents: 68
diff changeset
70 </dependency>
68
b0af3960917f Added NetworkNodePathTest
one
parents: 65
diff changeset
71
86
bcaf28f8244d Added PersistentChageList and PersistentJournalTest
one
parents: 68
diff changeset
72 <dependency>
bcaf28f8244d Added PersistentChageList and PersistentJournalTest
one
parents: 68
diff changeset
73 <groupId>alice</groupId>
bcaf28f8244d Added PersistentChageList and PersistentJournalTest
one
parents: 68
diff changeset
74 <artifactId>alice</artifactId>
bcaf28f8244d Added PersistentChageList and PersistentJournalTest
one
parents: 68
diff changeset
75 <version>0.1</version>
bcaf28f8244d Added PersistentChageList and PersistentJournalTest
one
parents: 68
diff changeset
76 </dependency>
bcaf28f8244d Added PersistentChageList and PersistentJournalTest
one
parents: 68
diff changeset
77 -->
68
b0af3960917f Added NetworkNodePathTest
one
parents: 65
diff changeset
78 <dependency>
b0af3960917f Added NetworkNodePathTest
one
parents: 65
diff changeset
79 <groupId>jungle</groupId>
b0af3960917f Added NetworkNodePathTest
one
parents: 65
diff changeset
80 <artifactId>jungle-core</artifactId>
b0af3960917f Added NetworkNodePathTest
one
parents: 65
diff changeset
81 <version>0.0.1-SNAPSHOT</version>
b0af3960917f Added NetworkNodePathTest
one
parents: 65
diff changeset
82 </dependency>
38
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
83 </dependencies>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
84 </project>