| author | veltr |
| Wed, 13 Mar 2013 15:37:31 +0100 | |
| changeset 75 | 7adef9ce92aa |
| parent 71 | 9af0874ce43f |
| child 76 | 523f0647513e |
| 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 |
||
| 54 | 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> |
| 58 | 12 |
<cowebx-version>1.0</cowebx-version> |
13 |
<jersey-version>1.17</jersey-version> |
|
14 |
<spring-version>3.2.1.RELEASE</spring-version> |
|
| 71 | 15 |
<spring-security-version>3.1.3.RELEASE</spring-security-version> |
| 58 | 16 |
<!--jetty-version>9.0.0.RC0</jetty-version--> |
17 |
<jetty-version>8.1.9.v20130131</jetty-version> |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
18 |
<junit-version>4.10</junit-version> |
| 58 | 19 |
<thymeleaf-version>2.0.15</thymeleaf-version> |
20 |
<cometd-version>2.5.1</cometd-version> |
|
| 71 | 21 |
<jackson-version>2.1.4</jackson-version> |
22 |
<joda-version>2.1</joda-version> |
|
| 9 | 23 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
24 |
</properties> |
|
25 |
||
26 |
<build> |
|
27 |
<defaultGoal>install</defaultGoal> |
|
28 |
<plugins> |
|
29 |
<plugin> |
|
30 |
<groupId>org.apache.maven.plugins</groupId> |
|
31 |
<artifactId>maven-compiler-plugin</artifactId> |
|
| 58 | 32 |
<version>3.0</version> |
| 9 | 33 |
<configuration> |
| 58 | 34 |
<source>1.7</source> |
35 |
<target>1.7</target> |
|
| 9 | 36 |
</configuration> |
37 |
</plugin> |
|
38 |
||
39 |
<plugin> |
|
40 |
<groupId>org.mortbay.jetty</groupId> |
|
41 |
<artifactId>jetty-maven-plugin</artifactId> |
|
| 54 | 42 |
<version>${jetty-version}</version> |
| 9 | 43 |
<configuration> |
44 |
<scanIntervalSeconds>10</scanIntervalSeconds> |
|
| 58 | 45 |
<webApp> |
| 9 | 46 |
<contextPath>/renkan</contextPath> |
| 58 | 47 |
</webApp> |
| 9 | 48 |
</configuration> |
49 |
</plugin> |
|
50 |
|
|
51 |
<plugin> |
|
52 |
<artifactId>maven-war-plugin</artifactId> |
|
| 58 | 53 |
<version>2.3</version> |
| 9 | 54 |
<configuration> |
55 |
<overlays> |
|
56 |
<overlay> |
|
57 |
<groupId>org.opencoweb</groupId> |
|
58 |
<artifactId>coweb-javascript</artifactId> |
|
59 |
<type>war</type> |
|
60 |
<excludes> |
|
61 |
<exclude>META-INF/**</exclude> |
|
62 |
<exclude>WEB-INF/**</exclude> |
|
63 |
</excludes> |
|
64 |
<targetPath>lib</targetPath> |
|
65 |
</overlay> |
|
| 45 | 66 |
<overlay> |
67 |
<groupId>org.opencoweb.cowebx</groupId> |
|
68 |
<artifactId>cowebx-widgets-dojo</artifactId> |
|
69 |
<type>war</type> |
|
70 |
<excludes> |
|
71 |
<exclude>META-INF/**</exclude> |
|
72 |
<exclude>WEB-INF/**</exclude> |
|
73 |
</excludes> |
|
74 |
<targetPath>lib/cowebx/dojo</targetPath> |
|
75 |
</overlay> |
|
| 9 | 76 |
</overlays> |
| 58 | 77 |
<webResources> |
78 |
<resource> |
|
79 |
<directory>../client/js</directory> |
|
80 |
<includes> |
|
81 |
<include>i18n.js</include> |
|
82 |
<include>*-bin.js</include> |
|
83 |
<include>models.js</include> |
|
84 |
<include>paper-renderer.js</include> |
|
85 |
<include>main.js</include> |
|
86 |
</includes> |
|
87 |
<targetPath>static/js</targetPath> |
|
88 |
</resource> |
|
89 |
<resource> |
|
90 |
<directory>../client/css</directory> |
|
91 |
<includes> |
|
92 |
<include>*.css</include> |
|
93 |
</includes> |
|
94 |
<targetPath>static/css</targetPath> |
|
95 |
</resource> |
|
96 |
<resource> |
|
97 |
<directory>../client/img</directory> |
|
98 |
<targetPath>static/img</targetPath> |
|
99 |
</resource> |
|
100 |
</webResources> |
|
| 9 | 101 |
</configuration> |
102 |
</plugin> |
|
103 |
</plugins> |
|
104 |
</build> |
|
| 71 | 105 |
<repositories> |
| 45 | 106 |
<repository> |
107 |
<id>spring-maven-release</id> |
|
108 |
<name>Spring Maven Release Repository</name> |
|
109 |
<url>http://maven.springframework.org/release</url> |
|
110 |
</repository> |
|
111 |
<repository> |
|
112 |
<id>spring-maven-milestone</id> |
|
113 |
<name>Spring Maven MILESTONE Repository</name> |
|
114 |
<url>http://maven.springframework.org/milestone</url> |
|
115 |
</repository> |
|
| 58 | 116 |
<repository> |
117 |
<id>spring-release</id> |
|
118 |
<name>Spring Maven SNAPSHOT Repository</name> |
|
119 |
<url>http://repo.springsource.org/release</url> |
|
120 |
</repository> |
|
| 45 | 121 |
</repositories> |
| 9 | 122 |
<dependencies> |
| 45 | 123 |
<dependency> |
124 |
<groupId>javax.inject</groupId> |
|
125 |
<artifactId>javax.inject</artifactId> |
|
126 |
<version>1</version> |
|
127 |
</dependency> |
|
128 |
<dependency> |
|
129 |
<groupId>javax.servlet</groupId> |
|
| 58 | 130 |
<artifactId>javax.servlet-api</artifactId> |
131 |
<version>3.0.1</version> |
|
| 45 | 132 |
</dependency> |
133 |
<dependency> |
|
134 |
<groupId>org.cometd.java</groupId> |
|
| 58 | 135 |
<artifactId>cometd-java-common</artifactId> |
136 |
<version>${cometd-version}</version> |
|
137 |
</dependency> |
|
138 |
<dependency> |
|
139 |
<groupId>org.cometd.java</groupId> |
|
| 45 | 140 |
<artifactId>cometd-java-annotations</artifactId> |
| 58 | 141 |
<version>${cometd-version}</version> |
142 |
</dependency> |
|
143 |
<dependency> |
|
144 |
<groupId>org.cometd.java</groupId> |
|
145 |
<artifactId>cometd-websocket-jetty</artifactId> |
|
146 |
<version>${cometd-version}</version> |
|
147 |
</dependency> |
|
| 9 | 148 |
<dependency> |
149 |
<groupId>org.opencoweb</groupId> |
|
150 |
<artifactId>coweb-bots</artifactId> |
|
151 |
<version>${coweb-version}</version> |
|
152 |
</dependency> |
|
153 |
<dependency> |
|
154 |
<groupId>org.opencoweb</groupId> |
|
155 |
<artifactId>coweb-server</artifactId> |
|
156 |
<version>${coweb-version}</version> |
|
157 |
</dependency> |
|
158 |
<dependency> |
|
159 |
<groupId>org.opencoweb</groupId> |
|
160 |
<artifactId>coweb-javascript</artifactId> |
|
161 |
<version>${coweb-version}</version> |
|
162 |
<type>war</type> |
|
163 |
</dependency> |
|
164 |
<dependency> |
|
| 45 | 165 |
<groupId>org.opencoweb.cowebx</groupId> |
166 |
<artifactId>cowebx-widgets-dojo</artifactId> |
|
|
48
01fb9167ad75
Correct bug on insert, delete move objects
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
167 |
<version>${cowebx-version}</version> |
| 45 | 168 |
<type>war</type> |
169 |
</dependency> |
|
170 |
<dependency> |
|
| 9 | 171 |
<groupId>com.sun.jersey</groupId> |
172 |
<artifactId>jersey-server</artifactId> |
|
| 45 | 173 |
<version>${jersey-version}</version> |
| 9 | 174 |
</dependency> |
175 |
<dependency> |
|
| 45 | 176 |
<groupId>com.sun.jersey.contribs</groupId> |
177 |
<artifactId>jersey-spring</artifactId> |
|
178 |
<version>${jersey-version}</version> |
|
179 |
<exclusions> |
|
180 |
<exclusion> |
|
181 |
<groupId>org.springframework</groupId> |
|
182 |
<artifactId>spring-context</artifactId> |
|
183 |
</exclusion> |
|
184 |
<exclusion> |
|
185 |
<groupId>org.springframework</groupId> |
|
186 |
<artifactId>spring-beans</artifactId> |
|
187 |
</exclusion> |
|
188 |
<exclusion> |
|
189 |
<groupId>org.springframework</groupId> |
|
190 |
<artifactId>spring-core</artifactId> |
|
191 |
</exclusion> |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
192 |
<exclusion> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
193 |
<groupId>org.springframework</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
194 |
<artifactId>spring-web</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
195 |
</exclusion> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
196 |
<exclusion> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
197 |
<groupId>org.springframework</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
198 |
<artifactId>spring-aop</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
199 |
</exclusion> |
| 45 | 200 |
</exclusions> |
| 9 | 201 |
</dependency> |
| 71 | 202 |
<dependency> |
203 |
<groupId>com.sun.jersey.jersey-test-framework</groupId> |
|
204 |
<artifactId>jersey-test-framework-grizzly2</artifactId> |
|
205 |
<version>${jersey-version}</version> |
|
206 |
<scope>test</scope> |
|
207 |
</dependency> |
|
| 9 | 208 |
<dependency> |
209 |
<groupId>org.mongodb</groupId> |
|
210 |
<artifactId>mongo-java-driver</artifactId> |
|
| 58 | 211 |
<version>2.10.1</version> |
| 22 | 212 |
</dependency> |
213 |
<dependency> |
|
214 |
<groupId>org.slf4j</groupId> |
|
215 |
<artifactId>slf4j-log4j12</artifactId> |
|
| 71 | 216 |
<version>1.7.2</version> |
| 22 | 217 |
</dependency> |
| 45 | 218 |
<dependency> |
219 |
<groupId>org.springframework</groupId> |
|
220 |
<artifactId>spring-core</artifactId> |
|
221 |
<version>${spring-version}</version> |
|
222 |
</dependency> |
|
223 |
<dependency> |
|
224 |
<groupId>org.springframework</groupId> |
|
225 |
<artifactId>spring-context</artifactId> |
|
226 |
<version>${spring-version}</version> |
|
227 |
</dependency> |
|
228 |
<dependency> |
|
229 |
<groupId>org.springframework</groupId> |
|
230 |
<artifactId>spring-web</artifactId> |
|
231 |
<version>${spring-version}</version> |
|
232 |
</dependency> |
|
| 51 | 233 |
<!--dependency> |
234 |
<groupId>org.springframework.security</groupId> |
|
235 |
<artifactId>spring-security-core</artifactId> |
|
236 |
<version>${spring-version}</version> |
|
237 |
</dependency> |
|
238 |
<dependency> |
|
239 |
<groupId>org.springframework.security</groupId> |
|
240 |
<artifactId>spring-security-web</artifactId> |
|
241 |
<version>${spring-version}</version> |
|
242 |
</dependency> |
|
243 |
<dependency> |
|
244 |
<groupId>org.springframework.security</groupId> |
|
245 |
<artifactId>spring-security-config</artifactId> |
|
246 |
<version>${spring-version}</version> |
|
247 |
</dependency--> |
|
| 45 | 248 |
<dependency> |
249 |
<groupId>org.springframework</groupId> |
|
250 |
<artifactId>spring-test</artifactId> |
|
251 |
<version>${spring-version}</version> |
|
252 |
</dependency> |
|
253 |
<dependency> |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
254 |
<groupId>org.springframework</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
255 |
<artifactId>spring-webmvc</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
256 |
<version>${spring-version}</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
257 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
258 |
<dependency> |
| 45 | 259 |
<groupId>org.springframework.data</groupId> |
260 |
<artifactId>spring-data-commons-core</artifactId> |
|
261 |
<version>1.4.0.RELEASE</version> |
|
262 |
</dependency> |
|
263 |
<dependency> |
|
264 |
<groupId>org.springframework.data</groupId> |
|
265 |
<artifactId>spring-data-jpa</artifactId> |
|
266 |
<version>1.2.0.RELEASE</version> |
|
267 |
</dependency> |
|
268 |
<dependency> |
|
269 |
<groupId>org.springframework.data</groupId> |
|
270 |
<artifactId>spring-data-mongodb</artifactId> |
|
| 58 | 271 |
<version>1.1.1.RELEASE</version> |
| 45 | 272 |
</dependency> |
273 |
<dependency> |
|
274 |
<groupId>javax.persistence</groupId> |
|
275 |
<artifactId>persistence-api</artifactId> |
|
276 |
<version>1.0.2</version> |
|
277 |
</dependency> |
|
278 |
<dependency> |
|
279 |
<groupId>junit</groupId> |
|
280 |
<artifactId>junit</artifactId> |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
281 |
<version>${junit-version}</version> |
| 45 | 282 |
<scope>test</scope> |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
283 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
284 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
285 |
<groupId>javax.servlet</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
286 |
<artifactId>jstl</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
287 |
<version>1.2</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
288 |
<scope>runtime</scope> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
289 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
290 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
291 |
<groupId>org.thymeleaf</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
292 |
<artifactId>thymeleaf</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
293 |
<version>${thymeleaf-version}</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
294 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
295 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
296 |
<groupId>org.thymeleaf</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
297 |
<artifactId>thymeleaf-spring3</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
298 |
<version>${thymeleaf-version}</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
299 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
300 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
301 |
<groupId>net.sourceforge.nekohtml</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
302 |
<artifactId>nekohtml</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
303 |
<version>1.9.16</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
304 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
305 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
306 |
<groupId>com.fasterxml.jackson.jaxrs</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
307 |
<artifactId>jackson-jaxrs-json-provider</artifactId> |
| 71 | 308 |
<version>${jackson-version}</version> |
| 51 | 309 |
</dependency> |
310 |
<dependency> |
|
311 |
<groupId>commons-codec</groupId> |
|
312 |
<artifactId>commons-codec</artifactId> |
|
313 |
<version>1.7</version> |
|
314 |
</dependency> |
|
| 58 | 315 |
<dependency> |
316 |
<groupId>org.eclipse.jetty</groupId> |
|
317 |
<artifactId>jetty-server</artifactId> |
|
318 |
<version>${jetty-version}</version> |
|
319 |
</dependency> |
|
320 |
<dependency> |
|
321 |
<groupId>org.eclipse.jetty</groupId> |
|
322 |
<artifactId>jetty-client</artifactId> |
|
323 |
<version>${jetty-version}</version> |
|
324 |
</dependency> |
|
325 |
<dependency> |
|
326 |
<groupId>org.eclipse.jetty</groupId> |
|
327 |
<artifactId>jetty-websocket</artifactId> |
|
328 |
<version>${jetty-version}</version> |
|
329 |
</dependency> |
|
330 |
<dependency> |
|
331 |
<groupId>org.eclipse.jetty</groupId> |
|
332 |
<artifactId>jetty-jmx</artifactId> |
|
333 |
<version>${jetty-version}</version> |
|
334 |
</dependency> |
|
335 |
<dependency> |
|
336 |
<groupId>org.eclipse.jetty</groupId> |
|
337 |
<artifactId>jetty-util</artifactId> |
|
338 |
<version>${jetty-version}</version> |
|
| 71 | 339 |
</dependency> |
340 |
<dependency> |
|
341 |
<groupId>org.springframework.security</groupId> |
|
342 |
<artifactId>spring-security-core</artifactId> |
|
343 |
<version>${spring-security-version}</version> |
|
344 |
</dependency> |
|
345 |
<dependency> |
|
346 |
<groupId>org.springframework.security</groupId> |
|
347 |
<artifactId>spring-security-web</artifactId> |
|
348 |
<version>${spring-security-version}</version> |
|
349 |
</dependency> |
|
350 |
<dependency> |
|
351 |
<groupId>org.springframework.security</groupId> |
|
352 |
<artifactId>spring-security-config</artifactId> |
|
353 |
<version>${spring-security-version}</version> |
|
354 |
</dependency> |
|
355 |
<dependency> |
|
356 |
<groupId>de.undercouch</groupId> |
|
357 |
<artifactId>bson4jackson</artifactId> |
|
358 |
<version>2.1.1</version> |
|
359 |
</dependency> |
|
360 |
<dependency> |
|
361 |
<groupId>joda-time</groupId> |
|
362 |
<artifactId>joda-time</artifactId> |
|
363 |
<version>${joda-version}</version> |
|
| 58 | 364 |
</dependency> |
| 9 | 365 |
</dependencies> |
366 |
<organization> |
|
367 |
<name>IRI</name> |
|
368 |
<url>http://www.iri.centrepompidou.fr</url> |
|
369 |
</organization> |
|
370 |
</project> |