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