annotate pom.xml @ 65:ebf42371454b

remove warning
author one
date Wed, 14 Aug 2013 17:44:09 +0900
parents ea858089fbd9
children b0af3960917f
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>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
55 <groupId>jungle</groupId>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
56 <artifactId>jungle-core</artifactId>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
57 <version>0.0.1-SNAPSHOT</version>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
58 </dependency>
46
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
59 <dependency>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
60 <groupId>com.github.stephenc.eaio-uuid</groupId>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
61 <artifactId>uuid</artifactId>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
62 <version>3.3.0</version>
fd3643699f83 modified pom.xml. fix conflict log4j libraries
one
parents: 38
diff changeset
63 </dependency>
55
25edf76b65dc modified pom.xml. remove functionalJava library
one
parents: 46
diff changeset
64 <dependency>
25edf76b65dc modified pom.xml. remove functionalJava library
one
parents: 46
diff changeset
65 <groupId>org.functionaljava</groupId>
25edf76b65dc modified pom.xml. remove functionalJava library
one
parents: 46
diff changeset
66 <artifactId>functionaljava</artifactId>
25edf76b65dc modified pom.xml. remove functionalJava library
one
parents: 46
diff changeset
67 <version>3.1</version>
25edf76b65dc modified pom.xml. remove functionalJava library
one
parents: 46
diff changeset
68 </dependency>
38
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
69 </dependencies>
d8ee57a1c2c6 add pom.xml and bbs
one
parents:
diff changeset
70 </project>