Mercurial > hg > Members > nobuyasu > jungle-network
annotate pom.xml @ 97:11ad00323206
Removed unnecessary files. Modified NetworkDefaultJungleTreeEditor
author | one |
---|---|
date | Tue, 19 Nov 2013 15:38:32 +0900 |
parents | bcaf28f8244d |
children | fac2eb0384a2 |
rev | line source |
---|---|
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> | |
97
11ad00323206
Removed unnecessary files. Modified NetworkDefaultJungleTreeEditor
one
parents:
86
diff
changeset
|
17 |
38 | 18 </plugins> |
19 </build> | |
20 <properties> | |
21 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
22 </properties> | |
23 <dependencies> | |
24 <dependency> | |
25 <groupId>junit</groupId> | |
26 <artifactId>junit</artifactId> | |
27 <version>3.8.1</version> | |
28 </dependency> | |
29 <dependency> | |
30 <groupId>org.mortbay.jetty</groupId> | |
31 <artifactId>jetty</artifactId> | |
32 <version>6.1.26</version> | |
33 </dependency> | |
34 <dependency> | |
35 <groupId>org.hectorclient</groupId> | |
36 <artifactId>hector-core</artifactId> | |
37 <version>1.1-2</version> | |
38 </dependency> | |
39 <dependency> | |
40 <groupId>org.apache.cassandra</groupId> | |
41 <artifactId>cassandra-all</artifactId> | |
42 <version>1.2.1</version> | |
46 | 43 <exclusions> |
44 <exclusion> | |
45 <groupId>org.slf4j</groupId> | |
46 <artifactId>slf4j-log4j12</artifactId> | |
47 </exclusion> | |
48 <exclusion> | |
49 <groupId>log4j</groupId> | |
50 <artifactId>log4j</artifactId> | |
51 </exclusion> | |
52 </exclusions> | |
53 | |
38 | 54 </dependency> |
55 <dependency> | |
46 | 56 <groupId>com.github.stephenc.eaio-uuid</groupId> |
57 <artifactId>uuid</artifactId> | |
58 <version>3.3.0</version> | |
59 </dependency> | |
55 | 60 <dependency> |
61 <groupId>org.functionaljava</groupId> | |
62 <artifactId>functionaljava</artifactId> | |
63 <version>3.1</version> | |
64 </dependency> | |
86 | 65 |
66 <!-- | |
67 <dependency> | |
68 <groupId>org.msgpack</groupId> | |
69 <artifactId>msgpack</artifactId> | |
70 <version>0.6.8</version> | |
71 </dependency> | |
68 | 72 |
86 | 73 <dependency> |
74 <groupId>alice</groupId> | |
75 <artifactId>alice</artifactId> | |
76 <version>0.1</version> | |
77 </dependency> | |
97
11ad00323206
Removed unnecessary files. Modified NetworkDefaultJungleTreeEditor
one
parents:
86
diff
changeset
|
78 --> |
68 | 79 <dependency> |
80 <groupId>jungle</groupId> | |
81 <artifactId>jungle-core</artifactId> | |
82 <version>0.0.1-SNAPSHOT</version> | |
83 </dependency> | |
38 | 84 </dependencies> |
85 </project> |