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