| author | veltr |
| Fri, 15 Mar 2013 12:54:36 +0100 | |
| changeset 81 | 555a094e2000 |
| parent 80 | 5295e118320b |
| child 87 | 6c810f746837 |
| 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 |
||
|
76
523f0647513e
add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents:
71
diff
changeset
|
10 |
<properties> |
|
523f0647513e
add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents:
71
diff
changeset
|
11 |
<surefire-version>2.14</surefire-version> |
|
48
01fb9167ad75
Correct bug on insert, delete move objects
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
12 |
<coweb-version>1.0</coweb-version> |
| 58 | 13 |
<cowebx-version>1.0</cowebx-version> |
14 |
<jersey-version>1.17</jersey-version> |
|
15 |
<spring-version>3.2.1.RELEASE</spring-version> |
|
| 71 | 16 |
<spring-security-version>3.1.3.RELEASE</spring-security-version> |
| 58 | 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> |
|
76
523f0647513e
add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents:
71
diff
changeset
|
19 |
<thymeleaf-version>2.0.16</thymeleaf-version> |
| 58 | 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> |
|
| 80 | 82 |
<include>full-json.js</include> |
| 58 | 83 |
<include>*-bin.js</include> |
84 |
<include>models.js</include> |
|
85 |
<include>paper-renderer.js</include> |
|
86 |
<include>main.js</include> |
|
87 |
</includes> |
|
88 |
<targetPath>static/js</targetPath> |
|
89 |
</resource> |
|
90 |
<resource> |
|
91 |
<directory>../client/css</directory> |
|
92 |
<includes> |
|
93 |
<include>*.css</include> |
|
94 |
</includes> |
|
95 |
<targetPath>static/css</targetPath> |
|
96 |
</resource> |
|
97 |
<resource> |
|
98 |
<directory>../client/img</directory> |
|
99 |
<targetPath>static/img</targetPath> |
|
100 |
</resource> |
|
| 80 | 101 |
<resource> |
102 |
<directory>../client/data</directory> |
|
103 |
<includes> |
|
104 |
<include>properties.json</include> |
|
105 |
</includes> |
|
106 |
<targetPath>static/data</targetPath> |
|
107 |
</resource> |
|
| 58 | 108 |
</webResources> |
| 9 | 109 |
</configuration> |
110 |
</plugin> |
|
|
76
523f0647513e
add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents:
71
diff
changeset
|
111 |
<plugin> |
|
523f0647513e
add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents:
71
diff
changeset
|
112 |
<groupId>org.apache.maven.plugins</groupId> |
|
523f0647513e
add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents:
71
diff
changeset
|
113 |
<artifactId>maven-surefire-plugin</artifactId> |
|
523f0647513e
add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents:
71
diff
changeset
|
114 |
<version>${surefire-version}</version> |
|
523f0647513e
add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents:
71
diff
changeset
|
115 |
</plugin> |
| 9 | 116 |
</plugins> |
117 |
</build> |
|
| 71 | 118 |
<repositories> |
| 45 | 119 |
<repository> |
120 |
<id>spring-maven-release</id> |
|
121 |
<name>Spring Maven Release Repository</name> |
|
122 |
<url>http://maven.springframework.org/release</url> |
|
123 |
</repository> |
|
124 |
<repository> |
|
125 |
<id>spring-maven-milestone</id> |
|
126 |
<name>Spring Maven MILESTONE Repository</name> |
|
127 |
<url>http://maven.springframework.org/milestone</url> |
|
128 |
</repository> |
|
| 58 | 129 |
<repository> |
130 |
<id>spring-release</id> |
|
131 |
<name>Spring Maven SNAPSHOT Repository</name> |
|
132 |
<url>http://repo.springsource.org/release</url> |
|
133 |
</repository> |
|
| 45 | 134 |
</repositories> |
| 9 | 135 |
<dependencies> |
| 45 | 136 |
<dependency> |
137 |
<groupId>javax.inject</groupId> |
|
138 |
<artifactId>javax.inject</artifactId> |
|
139 |
<version>1</version> |
|
140 |
</dependency> |
|
141 |
<dependency> |
|
142 |
<groupId>javax.servlet</groupId> |
|
| 58 | 143 |
<artifactId>javax.servlet-api</artifactId> |
144 |
<version>3.0.1</version> |
|
| 45 | 145 |
</dependency> |
146 |
<dependency> |
|
147 |
<groupId>org.cometd.java</groupId> |
|
| 58 | 148 |
<artifactId>cometd-java-common</artifactId> |
149 |
<version>${cometd-version}</version> |
|
150 |
</dependency> |
|
151 |
<dependency> |
|
152 |
<groupId>org.cometd.java</groupId> |
|
| 45 | 153 |
<artifactId>cometd-java-annotations</artifactId> |
| 58 | 154 |
<version>${cometd-version}</version> |
155 |
</dependency> |
|
156 |
<dependency> |
|
157 |
<groupId>org.cometd.java</groupId> |
|
158 |
<artifactId>cometd-websocket-jetty</artifactId> |
|
159 |
<version>${cometd-version}</version> |
|
160 |
</dependency> |
|
| 9 | 161 |
<dependency> |
162 |
<groupId>org.opencoweb</groupId> |
|
163 |
<artifactId>coweb-bots</artifactId> |
|
164 |
<version>${coweb-version}</version> |
|
165 |
</dependency> |
|
166 |
<dependency> |
|
167 |
<groupId>org.opencoweb</groupId> |
|
168 |
<artifactId>coweb-server</artifactId> |
|
169 |
<version>${coweb-version}</version> |
|
170 |
</dependency> |
|
171 |
<dependency> |
|
172 |
<groupId>org.opencoweb</groupId> |
|
173 |
<artifactId>coweb-javascript</artifactId> |
|
174 |
<version>${coweb-version}</version> |
|
175 |
<type>war</type> |
|
176 |
</dependency> |
|
177 |
<dependency> |
|
| 45 | 178 |
<groupId>org.opencoweb.cowebx</groupId> |
179 |
<artifactId>cowebx-widgets-dojo</artifactId> |
|
|
48
01fb9167ad75
Correct bug on insert, delete move objects
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
180 |
<version>${cowebx-version}</version> |
| 45 | 181 |
<type>war</type> |
182 |
</dependency> |
|
183 |
<dependency> |
|
| 9 | 184 |
<groupId>com.sun.jersey</groupId> |
185 |
<artifactId>jersey-server</artifactId> |
|
| 45 | 186 |
<version>${jersey-version}</version> |
| 9 | 187 |
</dependency> |
188 |
<dependency> |
|
| 45 | 189 |
<groupId>com.sun.jersey.contribs</groupId> |
190 |
<artifactId>jersey-spring</artifactId> |
|
191 |
<version>${jersey-version}</version> |
|
192 |
<exclusions> |
|
193 |
<exclusion> |
|
194 |
<groupId>org.springframework</groupId> |
|
195 |
<artifactId>spring-context</artifactId> |
|
196 |
</exclusion> |
|
197 |
<exclusion> |
|
198 |
<groupId>org.springframework</groupId> |
|
199 |
<artifactId>spring-beans</artifactId> |
|
200 |
</exclusion> |
|
201 |
<exclusion> |
|
202 |
<groupId>org.springframework</groupId> |
|
203 |
<artifactId>spring-core</artifactId> |
|
204 |
</exclusion> |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
205 |
<exclusion> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
206 |
<groupId>org.springframework</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
207 |
<artifactId>spring-web</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
208 |
</exclusion> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
209 |
<exclusion> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
210 |
<groupId>org.springframework</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
211 |
<artifactId>spring-aop</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
212 |
</exclusion> |
| 45 | 213 |
</exclusions> |
| 9 | 214 |
</dependency> |
| 71 | 215 |
<dependency> |
216 |
<groupId>com.sun.jersey.jersey-test-framework</groupId> |
|
217 |
<artifactId>jersey-test-framework-grizzly2</artifactId> |
|
218 |
<version>${jersey-version}</version> |
|
219 |
<scope>test</scope> |
|
220 |
</dependency> |
|
| 9 | 221 |
<dependency> |
222 |
<groupId>org.mongodb</groupId> |
|
223 |
<artifactId>mongo-java-driver</artifactId> |
|
| 58 | 224 |
<version>2.10.1</version> |
| 22 | 225 |
</dependency> |
226 |
<dependency> |
|
227 |
<groupId>org.slf4j</groupId> |
|
228 |
<artifactId>slf4j-log4j12</artifactId> |
|
| 71 | 229 |
<version>1.7.2</version> |
| 22 | 230 |
</dependency> |
| 45 | 231 |
<dependency> |
232 |
<groupId>org.springframework</groupId> |
|
233 |
<artifactId>spring-core</artifactId> |
|
234 |
<version>${spring-version}</version> |
|
235 |
</dependency> |
|
236 |
<dependency> |
|
237 |
<groupId>org.springframework</groupId> |
|
238 |
<artifactId>spring-context</artifactId> |
|
239 |
<version>${spring-version}</version> |
|
240 |
</dependency> |
|
241 |
<dependency> |
|
242 |
<groupId>org.springframework</groupId> |
|
243 |
<artifactId>spring-web</artifactId> |
|
244 |
<version>${spring-version}</version> |
|
245 |
</dependency> |
|
| 51 | 246 |
<!--dependency> |
247 |
<groupId>org.springframework.security</groupId> |
|
248 |
<artifactId>spring-security-core</artifactId> |
|
249 |
<version>${spring-version}</version> |
|
250 |
</dependency> |
|
251 |
<dependency> |
|
252 |
<groupId>org.springframework.security</groupId> |
|
253 |
<artifactId>spring-security-web</artifactId> |
|
254 |
<version>${spring-version}</version> |
|
255 |
</dependency> |
|
256 |
<dependency> |
|
257 |
<groupId>org.springframework.security</groupId> |
|
258 |
<artifactId>spring-security-config</artifactId> |
|
259 |
<version>${spring-version}</version> |
|
260 |
</dependency--> |
|
| 45 | 261 |
<dependency> |
262 |
<groupId>org.springframework</groupId> |
|
263 |
<artifactId>spring-test</artifactId> |
|
264 |
<version>${spring-version}</version> |
|
265 |
</dependency> |
|
266 |
<dependency> |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
267 |
<groupId>org.springframework</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
268 |
<artifactId>spring-webmvc</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
269 |
<version>${spring-version}</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
270 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
271 |
<dependency> |
| 45 | 272 |
<groupId>org.springframework.data</groupId> |
|
76
523f0647513e
add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents:
71
diff
changeset
|
273 |
<artifactId>spring-data-commons</artifactId> |
|
523f0647513e
add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents:
71
diff
changeset
|
274 |
<version>1.5.0.RELEASE</version> |
| 45 | 275 |
</dependency> |
276 |
<dependency> |
|
277 |
<groupId>org.springframework.data</groupId> |
|
278 |
<artifactId>spring-data-jpa</artifactId> |
|
|
76
523f0647513e
add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents:
71
diff
changeset
|
279 |
<version>1.3.0.RELEASE</version> |
| 45 | 280 |
</dependency> |
281 |
<dependency> |
|
282 |
<groupId>org.springframework.data</groupId> |
|
283 |
<artifactId>spring-data-mongodb</artifactId> |
|
|
76
523f0647513e
add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents:
71
diff
changeset
|
284 |
<version>1.2.0.RELEASE</version> |
| 45 | 285 |
</dependency> |
286 |
<dependency> |
|
287 |
<groupId>javax.persistence</groupId> |
|
288 |
<artifactId>persistence-api</artifactId> |
|
289 |
<version>1.0.2</version> |
|
290 |
</dependency> |
|
291 |
<dependency> |
|
292 |
<groupId>junit</groupId> |
|
293 |
<artifactId>junit</artifactId> |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
294 |
<version>${junit-version}</version> |
| 45 | 295 |
<scope>test</scope> |
|
47
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 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
298 |
<groupId>javax.servlet</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
299 |
<artifactId>jstl</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
300 |
<version>1.2</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
301 |
<scope>runtime</scope> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
302 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
303 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
304 |
<groupId>org.thymeleaf</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
305 |
<artifactId>thymeleaf</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
306 |
<version>${thymeleaf-version}</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
307 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
308 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
309 |
<groupId>org.thymeleaf</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
310 |
<artifactId>thymeleaf-spring3</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
311 |
<version>${thymeleaf-version}</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
312 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
313 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
314 |
<groupId>net.sourceforge.nekohtml</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
315 |
<artifactId>nekohtml</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
316 |
<version>1.9.16</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
317 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
318 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
319 |
<groupId>com.fasterxml.jackson.jaxrs</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
320 |
<artifactId>jackson-jaxrs-json-provider</artifactId> |
| 71 | 321 |
<version>${jackson-version}</version> |
| 51 | 322 |
</dependency> |
323 |
<dependency> |
|
324 |
<groupId>commons-codec</groupId> |
|
325 |
<artifactId>commons-codec</artifactId> |
|
326 |
<version>1.7</version> |
|
327 |
</dependency> |
|
| 58 | 328 |
<dependency> |
329 |
<groupId>org.eclipse.jetty</groupId> |
|
330 |
<artifactId>jetty-server</artifactId> |
|
331 |
<version>${jetty-version}</version> |
|
332 |
</dependency> |
|
333 |
<dependency> |
|
334 |
<groupId>org.eclipse.jetty</groupId> |
|
335 |
<artifactId>jetty-client</artifactId> |
|
336 |
<version>${jetty-version}</version> |
|
337 |
</dependency> |
|
338 |
<dependency> |
|
339 |
<groupId>org.eclipse.jetty</groupId> |
|
340 |
<artifactId>jetty-websocket</artifactId> |
|
341 |
<version>${jetty-version}</version> |
|
342 |
</dependency> |
|
343 |
<dependency> |
|
344 |
<groupId>org.eclipse.jetty</groupId> |
|
345 |
<artifactId>jetty-jmx</artifactId> |
|
346 |
<version>${jetty-version}</version> |
|
347 |
</dependency> |
|
348 |
<dependency> |
|
349 |
<groupId>org.eclipse.jetty</groupId> |
|
350 |
<artifactId>jetty-util</artifactId> |
|
351 |
<version>${jetty-version}</version> |
|
| 71 | 352 |
</dependency> |
353 |
<dependency> |
|
354 |
<groupId>org.springframework.security</groupId> |
|
355 |
<artifactId>spring-security-core</artifactId> |
|
356 |
<version>${spring-security-version}</version> |
|
357 |
</dependency> |
|
358 |
<dependency> |
|
359 |
<groupId>org.springframework.security</groupId> |
|
360 |
<artifactId>spring-security-web</artifactId> |
|
361 |
<version>${spring-security-version}</version> |
|
362 |
</dependency> |
|
363 |
<dependency> |
|
364 |
<groupId>org.springframework.security</groupId> |
|
365 |
<artifactId>spring-security-config</artifactId> |
|
366 |
<version>${spring-security-version}</version> |
|
367 |
</dependency> |
|
368 |
<dependency> |
|
369 |
<groupId>de.undercouch</groupId> |
|
370 |
<artifactId>bson4jackson</artifactId> |
|
371 |
<version>2.1.1</version> |
|
372 |
</dependency> |
|
373 |
<dependency> |
|
374 |
<groupId>joda-time</groupId> |
|
375 |
<artifactId>joda-time</artifactId> |
|
376 |
<version>${joda-version}</version> |
|
| 58 | 377 |
</dependency> |
| 9 | 378 |
</dependencies> |
379 |
<organization> |
|
380 |
<name>IRI</name> |
|
381 |
<url>http://www.iri.centrepompidou.fr</url> |
|
382 |
</organization> |
|
383 |
</project> |