Mercurial > hg > Database > jungle-network
annotate pom.xml @ 105:f9e29a52efd3
Move some files
author | one |
---|---|
date | Tue, 26 Nov 2013 06:43:10 +0900 |
parents | 03bf62bb699e |
children | f42f2e6b31de |
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> | |
103 | 5 <version>0.0.2-SNAPSHOT</version> |
38 | 6 <build> |
105 | 7 <sourceDirectory>src/main/java</sourceDirectory> |
8 <testSourceDirectory>src/test/java</testSourceDirectory> | |
38 | 9 <plugins> |
10 <plugin> | |
11 <artifactId>maven-compiler-plugin</artifactId> | |
12 <version>3.0</version> | |
13 <configuration> | |
14 <source>1.6</source> | |
15 <target>1.6</target> | |
16 </configuration> | |
17 </plugin> | |
97
11ad00323206
Removed unnecessary files. Modified NetworkDefaultJungleTreeEditor
one
parents:
86
diff
changeset
|
18 |
101 | 19 <!-- |
100 | 20 <plugin> |
21 <groupId>org.apache.maven.plugins</groupId> | |
22 <artifactId>maven-shade-plugin</artifactId> | |
23 <version>1.3</version> | |
24 <executions> | |
25 <execution> | |
26 <phase>package</phase> | |
27 <goals> | |
28 <goal>shade</goal> | |
29 </goals> | |
30 <configuration> | |
31 <finalName>DistributeJungleBBS</finalName> | |
32 <transformers> | |
33 <transformer | |
34 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | |
35 <mainClass>jungle.app.bbs.DistributeApp</mainClass> | |
36 </transformer> | |
37 </transformers> | |
38 </configuration> | |
39 </execution> | |
40 </executions> | |
41 </plugin> | |
42 --> | |
43 | |
38 | 44 </plugins> |
45 </build> | |
46 <properties> | |
47 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
48 </properties> | |
49 <dependencies> | |
105 | 50 <dependency> |
51 <groupId>junit</groupId> | |
52 <artifactId>junit</artifactId> | |
53 <version>4.7</version> | |
54 <scope>test</scope> | |
55 </dependency> | |
38 | 56 <dependency> |
57 <groupId>org.mortbay.jetty</groupId> | |
58 <artifactId>jetty</artifactId> | |
59 <version>6.1.26</version> | |
60 </dependency> | |
61 <dependency> | |
62 <groupId>org.hectorclient</groupId> | |
63 <artifactId>hector-core</artifactId> | |
64 <version>1.1-2</version> | |
65 </dependency> | |
66 <dependency> | |
67 <groupId>org.apache.cassandra</groupId> | |
68 <artifactId>cassandra-all</artifactId> | |
69 <version>1.2.1</version> | |
46 | 70 <exclusions> |
71 <exclusion> | |
72 <groupId>org.slf4j</groupId> | |
73 <artifactId>slf4j-log4j12</artifactId> | |
74 </exclusion> | |
75 <exclusion> | |
76 <groupId>log4j</groupId> | |
77 <artifactId>log4j</artifactId> | |
78 </exclusion> | |
79 </exclusions> | |
80 | |
38 | 81 </dependency> |
82 <dependency> | |
46 | 83 <groupId>com.github.stephenc.eaio-uuid</groupId> |
84 <artifactId>uuid</artifactId> | |
85 <version>3.3.0</version> | |
86 </dependency> | |
55 | 87 <dependency> |
88 <groupId>org.functionaljava</groupId> | |
89 <artifactId>functionaljava</artifactId> | |
90 <version>3.1</version> | |
91 </dependency> | |
86 | 92 |
93 <!-- | |
94 <dependency> | |
95 <groupId>org.msgpack</groupId> | |
96 <artifactId>msgpack</artifactId> | |
97 <version>0.6.8</version> | |
98 </dependency> | |
68 | 99 |
86 | 100 <dependency> |
101 <groupId>alice</groupId> | |
102 <artifactId>alice</artifactId> | |
103 | 103 <version>0.2</version> |
86 | 104 </dependency> |
97
11ad00323206
Removed unnecessary files. Modified NetworkDefaultJungleTreeEditor
one
parents:
86
diff
changeset
|
105 --> |
68 | 106 <dependency> |
107 <groupId>jungle</groupId> | |
108 <artifactId>jungle-core</artifactId> | |
104 | 109 <version>0.0.2-SNAPSHOT</version> |
68 | 110 </dependency> |
38 | 111 </dependencies> |
112 </project> |