Mercurial > hg > Members > nobuyasu > jungle-network
annotate pom.xml @ 175:066f58e93a14
remove StringEscapeUtils.unescapeHtml
author | tatsuki |
---|---|
date | Wed, 30 Jul 2014 17:57:18 +0900 |
parents | 47ca5d48c30f |
children | 6f104ab4eb81 |
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> | |
120 | 5 <version>0.0.3-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> | |
157 | 14 <source>1.6</source> |
15 <target>1.6</target> | |
38 | 16 </configuration> |
17 </plugin> | |
18 </plugins> | |
19 </build> | |
116 | 20 <properties> |
38 | 21 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
22 </properties> | |
23 <dependencies> | |
105 | 24 <dependency> |
25 <groupId>junit</groupId> | |
26 <artifactId>junit</artifactId> | |
27 <version>4.7</version> | |
28 <scope>test</scope> | |
29 </dependency> | |
154 | 30 <dependency> |
31 <groupId>org.eclipse.jetty</groupId> | |
32 <artifactId>jetty-server</artifactId> | |
33 <version>9.2.1.v20140609</version> | |
34 </dependency> | |
35 <dependency> | |
36 <groupId>org.eclipse.jetty</groupId> | |
37 <artifactId>jetty-servlet</artifactId> | |
38 <version>9.2.1.v20140609</version> | |
39 </dependency> | |
40 | |
38 | 41 <dependency> |
42 <groupId>org.hectorclient</groupId> | |
43 <artifactId>hector-core</artifactId> | |
44 <version>1.1-2</version> | |
45 </dependency> | |
46 <dependency> | |
46 | 47 <groupId>com.github.stephenc.eaio-uuid</groupId> |
48 <artifactId>uuid</artifactId> | |
49 <version>3.3.0</version> | |
50 </dependency> | |
55 | 51 <dependency> |
52 <groupId>org.functionaljava</groupId> | |
53 <artifactId>functionaljava</artifactId> | |
54 <version>3.1</version> | |
55 </dependency> | |
106
f42f2e6b31de
Removed project reference and Added dependency in pom.xml
one
parents:
105
diff
changeset
|
56 |
f42f2e6b31de
Removed project reference and Added dependency in pom.xml
one
parents:
105
diff
changeset
|
57 <dependency> |
86 | 58 <groupId>org.msgpack</groupId> |
59 <artifactId>msgpack</artifactId> | |
60 <version>0.6.8</version> | |
61 </dependency> | |
68 | 62 |
63 <dependency> | |
64 <groupId>jungle</groupId> | |
65 <artifactId>jungle-core</artifactId> | |
120 | 66 <version>0.0.3-SNAPSHOT</version> |
68 | 67 </dependency> |
125 | 68 |
69 | |
70 <dependency> | |
71 <groupId>jp.ac.u_ryukyu.ie.cr.shoshi.jungle</groupId> | |
72 <artifactId>bulletinboard</artifactId> | |
73 <version>0.0.1-SNAPSHOT</version> | |
74 </dependency> | |
38 | 75 </dependencies> |
76 </project> |