| author | ymh <ymh.work@gmail.com> |
| Tue, 01 Jan 2013 09:28:03 +0100 | |
| changeset 50 | 7b517a54b708 |
| parent 48 | 01fb9167ad75 |
| child 51 | 3247fccfbd3f |
| permissions | -rw-r--r-- |
| 9 | 1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<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"> |
|
3 |
||
4 |
<modelVersion>4.0.0</modelVersion> |
|
5 |
<groupId>org.iri_research.renkan</groupId> |
|
6 |
<artifactId>renkan</artifactId> |
|
7 |
<version>0.1</version> |
|
8 |
<packaging>war</packaging> |
|
9 |
||
10 |
<properties> |
|
|
48
01fb9167ad75
Correct bug on insert, delete move objects
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
11 |
<coweb-version>1.0</coweb-version> |
|
01fb9167ad75
Correct bug on insert, delete move objects
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
12 |
<cowebx-version>0.8.4</cowebx-version> |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
13 |
<jersey-version>1.16</jersey-version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
14 |
<spring-version>3.1.3.RELEASE</spring-version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
15 |
<junit-version>4.10</junit-version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
16 |
<thymeleaf-version>2.0.14</thymeleaf-version> |
| 9 | 17 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
18 |
</properties> |
|
19 |
||
20 |
<build> |
|
21 |
<defaultGoal>install</defaultGoal> |
|
22 |
<plugins> |
|
23 |
<plugin> |
|
24 |
<groupId>org.apache.maven.plugins</groupId> |
|
25 |
<artifactId>maven-compiler-plugin</artifactId> |
|
26 |
<version>2.3.2</version> |
|
27 |
<configuration> |
|
28 |
<source>1.6</source> |
|
29 |
<target>1.6</target> |
|
30 |
</configuration> |
|
31 |
</plugin> |
|
32 |
||
33 |
<plugin> |
|
34 |
<groupId>org.mortbay.jetty</groupId> |
|
35 |
<artifactId>jetty-maven-plugin</artifactId> |
|
|
48
01fb9167ad75
Correct bug on insert, delete move objects
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
36 |
<version>8.1.8.v20121106</version> |
| 9 | 37 |
<configuration> |
38 |
<scanIntervalSeconds>10</scanIntervalSeconds> |
|
39 |
<webAppConfig> |
|
40 |
<contextPath>/renkan</contextPath> |
|
41 |
</webAppConfig> |
|
42 |
</configuration> |
|
43 |
</plugin> |
|
44 |
|
|
45 |
<plugin> |
|
46 |
<artifactId>maven-war-plugin</artifactId> |
|
47 |
<version>2.1.1</version> |
|
48 |
<configuration> |
|
49 |
<overlays> |
|
50 |
<overlay> |
|
51 |
<groupId>org.opencoweb</groupId> |
|
52 |
<artifactId>coweb-javascript</artifactId> |
|
53 |
<type>war</type> |
|
54 |
<excludes> |
|
55 |
<exclude>META-INF/**</exclude> |
|
56 |
<exclude>WEB-INF/**</exclude> |
|
57 |
</excludes> |
|
58 |
<targetPath>lib</targetPath> |
|
59 |
</overlay> |
|
| 45 | 60 |
<overlay> |
61 |
<groupId>org.opencoweb.cowebx</groupId> |
|
62 |
<artifactId>cowebx-widgets-dojo</artifactId> |
|
63 |
<type>war</type> |
|
64 |
<excludes> |
|
65 |
<exclude>META-INF/**</exclude> |
|
66 |
<exclude>WEB-INF/**</exclude> |
|
67 |
</excludes> |
|
68 |
<targetPath>lib/cowebx/dojo</targetPath> |
|
69 |
</overlay> |
|
| 9 | 70 |
</overlays> |
| 13 | 71 |
<webResources> |
72 |
<resource> |
|
73 |
<directory>../client</directory> |
|
74 |
<excludes> |
|
75 |
<exclude>**/*.html</exclude> |
|
76 |
<exclude>**/data</exclude> |
|
77 |
</excludes> |
|
78 |
</resource> |
|
| 45 | 79 |
<resource> |
80 |
<directory>src/main/web-resources</directory> |
|
81 |
</resource> |
|
| 13 | 82 |
</webResources> |
| 9 | 83 |
</configuration> |
84 |
</plugin> |
|
85 |
</plugins> |
|
86 |
</build> |
|
| 45 | 87 |
<repositories> |
88 |
<repository> |
|
89 |
<id>spring-maven-release</id> |
|
90 |
<name>Spring Maven Release Repository</name> |
|
91 |
<url>http://maven.springframework.org/release</url> |
|
92 |
</repository> |
|
93 |
<repository> |
|
94 |
<id>spring-maven-milestone</id> |
|
95 |
<name>Spring Maven MILESTONE Repository</name> |
|
96 |
<url>http://maven.springframework.org/milestone</url> |
|
97 |
</repository> |
|
98 |
</repositories> |
|
| 9 | 99 |
<dependencies> |
| 45 | 100 |
<dependency> |
101 |
<groupId>javax.inject</groupId> |
|
102 |
<artifactId>javax.inject</artifactId> |
|
103 |
<version>1</version> |
|
104 |
</dependency> |
|
105 |
<dependency> |
|
106 |
<groupId>javax.servlet</groupId> |
|
107 |
<artifactId>servlet-api</artifactId> |
|
108 |
<version>2.5</version> |
|
109 |
</dependency> |
|
110 |
<dependency> |
|
111 |
<groupId>org.cometd.java</groupId> |
|
112 |
<artifactId>cometd-java-annotations</artifactId> |
|
113 |
<version>2.5.0</version> |
|
114 |
</dependency> |
|
| 9 | 115 |
<dependency> |
116 |
<groupId>org.opencoweb</groupId> |
|
117 |
<artifactId>coweb-bots</artifactId> |
|
118 |
<version>${coweb-version}</version> |
|
119 |
</dependency> |
|
120 |
<dependency> |
|
121 |
<groupId>org.opencoweb</groupId> |
|
122 |
<artifactId>coweb-server</artifactId> |
|
123 |
<version>${coweb-version}</version> |
|
124 |
</dependency> |
|
125 |
<dependency> |
|
126 |
<groupId>org.opencoweb</groupId> |
|
127 |
<artifactId>coweb-javascript</artifactId> |
|
128 |
<version>${coweb-version}</version> |
|
129 |
<type>war</type> |
|
130 |
</dependency> |
|
131 |
<dependency> |
|
| 45 | 132 |
<groupId>org.opencoweb.cowebx</groupId> |
133 |
<artifactId>cowebx-widgets-dojo</artifactId> |
|
|
48
01fb9167ad75
Correct bug on insert, delete move objects
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
134 |
<version>${cowebx-version}</version> |
| 45 | 135 |
<type>war</type> |
136 |
</dependency> |
|
137 |
<dependency> |
|
| 9 | 138 |
<groupId>com.sun.jersey</groupId> |
139 |
<artifactId>jersey-server</artifactId> |
|
| 45 | 140 |
<version>${jersey-version}</version> |
| 9 | 141 |
</dependency> |
142 |
<dependency> |
|
| 45 | 143 |
<groupId>com.sun.jersey.contribs</groupId> |
144 |
<artifactId>jersey-spring</artifactId> |
|
145 |
<version>${jersey-version}</version> |
|
146 |
<exclusions> |
|
147 |
<exclusion> |
|
148 |
<groupId>org.springframework</groupId> |
|
149 |
<artifactId>spring-context</artifactId> |
|
150 |
</exclusion> |
|
151 |
<exclusion> |
|
152 |
<groupId>org.springframework</groupId> |
|
153 |
<artifactId>spring-beans</artifactId> |
|
154 |
</exclusion> |
|
155 |
<exclusion> |
|
156 |
<groupId>org.springframework</groupId> |
|
157 |
<artifactId>spring-core</artifactId> |
|
158 |
</exclusion> |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
159 |
<exclusion> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
160 |
<groupId>org.springframework</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
161 |
<artifactId>spring-web</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
162 |
</exclusion> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
163 |
<exclusion> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
164 |
<groupId>org.springframework</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
165 |
<artifactId>spring-aop</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
166 |
</exclusion> |
| 45 | 167 |
</exclusions> |
| 9 | 168 |
</dependency> |
169 |
<dependency> |
|
170 |
<groupId>org.mongodb</groupId> |
|
171 |
<artifactId>mongo-java-driver</artifactId> |
|
| 45 | 172 |
<version>2.9.0</version> |
| 22 | 173 |
</dependency> |
174 |
<dependency> |
|
175 |
<groupId>org.slf4j</groupId> |
|
176 |
<artifactId>slf4j-log4j12</artifactId> |
|
177 |
<version>1.6.6</version> |
|
178 |
</dependency> |
|
| 45 | 179 |
<dependency> |
180 |
<groupId>org.springframework</groupId> |
|
181 |
<artifactId>spring-core</artifactId> |
|
182 |
<version>${spring-version}</version> |
|
183 |
</dependency> |
|
184 |
<dependency> |
|
185 |
<groupId>org.springframework</groupId> |
|
186 |
<artifactId>spring-context</artifactId> |
|
187 |
<version>${spring-version}</version> |
|
188 |
</dependency> |
|
189 |
<dependency> |
|
190 |
<groupId>org.springframework</groupId> |
|
191 |
<artifactId>spring-web</artifactId> |
|
192 |
<version>${spring-version}</version> |
|
193 |
</dependency> |
|
194 |
<dependency> |
|
195 |
<groupId>org.springframework</groupId> |
|
196 |
<artifactId>spring-test</artifactId> |
|
197 |
<version>${spring-version}</version> |
|
198 |
</dependency> |
|
199 |
<dependency> |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
200 |
<groupId>org.springframework</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
201 |
<artifactId>spring-webmvc</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
202 |
<version>${spring-version}</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
203 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
204 |
<dependency> |
| 45 | 205 |
<groupId>org.springframework.data</groupId> |
206 |
<artifactId>spring-data-commons-core</artifactId> |
|
207 |
<version>1.4.0.RELEASE</version> |
|
208 |
</dependency> |
|
209 |
<dependency> |
|
210 |
<groupId>org.springframework.data</groupId> |
|
211 |
<artifactId>spring-data-jpa</artifactId> |
|
212 |
<version>1.2.0.RELEASE</version> |
|
213 |
</dependency> |
|
214 |
<dependency> |
|
215 |
<groupId>org.springframework.data</groupId> |
|
216 |
<artifactId>spring-data-mongodb</artifactId> |
|
217 |
<version>1.1.0.RELEASE</version> |
|
218 |
</dependency> |
|
219 |
<dependency> |
|
220 |
<groupId>javax.persistence</groupId> |
|
221 |
<artifactId>persistence-api</artifactId> |
|
222 |
<version>1.0.2</version> |
|
223 |
</dependency> |
|
224 |
<dependency> |
|
225 |
<groupId>junit</groupId> |
|
226 |
<artifactId>junit</artifactId> |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
227 |
<version>${junit-version}</version> |
| 45 | 228 |
<scope>test</scope> |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
229 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
230 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
231 |
<groupId>javax.servlet</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
232 |
<artifactId>jstl</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
233 |
<version>1.2</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
234 |
<scope>runtime</scope> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
235 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
236 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
237 |
<groupId>org.thymeleaf</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
238 |
<artifactId>thymeleaf</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
239 |
<version>${thymeleaf-version}</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
240 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
241 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
242 |
<groupId>org.thymeleaf</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
243 |
<artifactId>thymeleaf-spring3</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
244 |
<version>${thymeleaf-version}</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
245 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
246 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
247 |
<groupId>net.sourceforge.nekohtml</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
248 |
<artifactId>nekohtml</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
249 |
<version>1.9.16</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
250 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
251 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
252 |
<groupId>com.fasterxml.jackson.jaxrs</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
253 |
<artifactId>jackson-jaxrs-json-provider</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
254 |
<version>2.1.2</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
255 |
</dependency> |
| 9 | 256 |
</dependencies> |
257 |
<organization> |
|
258 |
<name>IRI</name> |
|
259 |
<url>http://www.iri.centrepompidou.fr</url> |
|
260 |
</organization> |
|
261 |
</project> |