| author | ymh <ymh.work@gmail.com> |
| Wed, 24 Apr 2013 16:25:01 +0200 | |
| changeset 179 | 98c137d6cc96 |
| parent 164 | 8786006c553c |
| child 183 | 93841dde3a3b |
| child 215 | a282eebbc5e0 |
| 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> |
|
|
179
98c137d6cc96
On rest correct single object get to produce jsonp by default. This may have to be correctted in the future
ymh <ymh.work@gmail.com>
parents:
164
diff
changeset
|
7 |
<version>0.6.4</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> |
|
164
8786006c553c
Add jsonp to get of single renkan resources.
ymh <ymh.work@gmail.com>
parents:
150
diff
changeset
|
14 |
<jersey-version>1.17.1</jersey-version> |
| 58 | 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> |
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
20 |
<thymeleaf-springsecurity-version>2.0.0</thymeleaf-springsecurity-version> |
| 58 | 21 |
<cometd-version>2.5.1</cometd-version> |
| 71 | 22 |
<jackson-version>2.1.4</jackson-version> |
23 |
<joda-version>2.1</joda-version> |
|
| 9 | 24 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
25 |
</properties> |
|
26 |
||
27 |
<build> |
|
28 |
<defaultGoal>install</defaultGoal> |
|
29 |
<plugins> |
|
30 |
<plugin> |
|
31 |
<groupId>org.apache.maven.plugins</groupId> |
|
32 |
<artifactId>maven-compiler-plugin</artifactId> |
|
| 58 | 33 |
<version>3.0</version> |
| 9 | 34 |
<configuration> |
| 58 | 35 |
<source>1.7</source> |
36 |
<target>1.7</target> |
|
| 9 | 37 |
</configuration> |
38 |
</plugin> |
|
39 |
||
40 |
<plugin> |
|
41 |
<groupId>org.mortbay.jetty</groupId> |
|
42 |
<artifactId>jetty-maven-plugin</artifactId> |
|
| 54 | 43 |
<version>${jetty-version}</version> |
| 9 | 44 |
<configuration> |
45 |
<scanIntervalSeconds>10</scanIntervalSeconds> |
|
| 58 | 46 |
<webApp> |
| 9 | 47 |
<contextPath>/renkan</contextPath> |
| 58 | 48 |
</webApp> |
| 9 | 49 |
</configuration> |
50 |
</plugin> |
|
51 |
|
|
52 |
<plugin> |
|
53 |
<artifactId>maven-war-plugin</artifactId> |
|
| 58 | 54 |
<version>2.3</version> |
| 9 | 55 |
<configuration> |
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
93
diff
changeset
|
56 |
<archive> |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
93
diff
changeset
|
57 |
<manifest> |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
93
diff
changeset
|
58 |
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
93
diff
changeset
|
59 |
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
93
diff
changeset
|
60 |
</manifest> |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
93
diff
changeset
|
61 |
</archive> |
| 9 | 62 |
<overlays> |
63 |
<overlay> |
|
64 |
<groupId>org.opencoweb</groupId> |
|
65 |
<artifactId>coweb-javascript</artifactId> |
|
66 |
<type>war</type> |
|
67 |
<excludes> |
|
68 |
<exclude>META-INF/**</exclude> |
|
69 |
<exclude>WEB-INF/**</exclude> |
|
70 |
</excludes> |
|
71 |
<targetPath>lib</targetPath> |
|
72 |
</overlay> |
|
| 45 | 73 |
<overlay> |
74 |
<groupId>org.opencoweb.cowebx</groupId> |
|
75 |
<artifactId>cowebx-widgets-dojo</artifactId> |
|
76 |
<type>war</type> |
|
77 |
<excludes> |
|
78 |
<exclude>META-INF/**</exclude> |
|
79 |
<exclude>WEB-INF/**</exclude> |
|
80 |
</excludes> |
|
81 |
<targetPath>lib/cowebx/dojo</targetPath> |
|
82 |
</overlay> |
|
| 9 | 83 |
</overlays> |
| 58 | 84 |
<webResources> |
85 |
<resource> |
|
86 |
<directory>../client/js</directory> |
|
87 |
<includes> |
|
88 |
<include>i18n.js</include> |
|
| 115 | 89 |
<include>defaults.js</include> |
| 80 | 90 |
<include>full-json.js</include> |
| 58 | 91 |
<include>*-bin.js</include> |
92 |
<include>models.js</include> |
|
93 |
<include>paper-renderer.js</include> |
|
94 |
<include>main.js</include> |
|
95 |
</includes> |
|
96 |
<targetPath>static/js</targetPath> |
|
97 |
</resource> |
|
98 |
<resource> |
|
|
131
2a48adff9c52
delete server js libs found in client and change pom to copy them on build.
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
99 |
<directory>../client/lib</directory> |
|
2a48adff9c52
delete server js libs found in client and change pom to copy them on build.
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
100 |
<targetPath>static/lib</targetPath> |
|
2a48adff9c52
delete server js libs found in client and change pom to copy them on build.
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
101 |
</resource> |
|
2a48adff9c52
delete server js libs found in client and change pom to copy them on build.
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
102 |
<resource> |
| 58 | 103 |
<directory>../client/css</directory> |
104 |
<includes> |
|
105 |
<include>*.css</include> |
|
106 |
</includes> |
|
107 |
<targetPath>static/css</targetPath> |
|
108 |
</resource> |
|
109 |
<resource> |
|
110 |
<directory>../client/img</directory> |
|
111 |
<targetPath>static/img</targetPath> |
|
112 |
</resource> |
|
| 80 | 113 |
<resource> |
114 |
<directory>../client/data</directory> |
|
115 |
<includes> |
|
116 |
<include>properties.json</include> |
|
117 |
</includes> |
|
118 |
<targetPath>static/data</targetPath> |
|
119 |
</resource> |
|
| 58 | 120 |
</webResources> |
| 9 | 121 |
</configuration> |
122 |
</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
|
123 |
<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
|
124 |
<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
|
125 |
<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
|
126 |
<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
|
127 |
</plugin> |
| 9 | 128 |
</plugins> |
129 |
</build> |
|
| 71 | 130 |
<repositories> |
| 45 | 131 |
<repository> |
132 |
<id>spring-maven-release</id> |
|
133 |
<name>Spring Maven Release Repository</name> |
|
134 |
<url>http://maven.springframework.org/release</url> |
|
135 |
</repository> |
|
136 |
<repository> |
|
137 |
<id>spring-maven-milestone</id> |
|
138 |
<name>Spring Maven MILESTONE Repository</name> |
|
139 |
<url>http://maven.springframework.org/milestone</url> |
|
140 |
</repository> |
|
| 58 | 141 |
<repository> |
142 |
<id>spring-release</id> |
|
143 |
<name>Spring Maven SNAPSHOT Repository</name> |
|
144 |
<url>http://repo.springsource.org/release</url> |
|
145 |
</repository> |
|
| 45 | 146 |
</repositories> |
| 9 | 147 |
<dependencies> |
| 45 | 148 |
<dependency> |
149 |
<groupId>javax.inject</groupId> |
|
150 |
<artifactId>javax.inject</artifactId> |
|
151 |
<version>1</version> |
|
152 |
</dependency> |
|
153 |
<dependency> |
|
154 |
<groupId>javax.servlet</groupId> |
|
| 58 | 155 |
<artifactId>javax.servlet-api</artifactId> |
156 |
<version>3.0.1</version> |
|
| 45 | 157 |
</dependency> |
158 |
<dependency> |
|
159 |
<groupId>org.cometd.java</groupId> |
|
| 58 | 160 |
<artifactId>cometd-java-common</artifactId> |
161 |
<version>${cometd-version}</version> |
|
162 |
</dependency> |
|
163 |
<dependency> |
|
164 |
<groupId>org.cometd.java</groupId> |
|
| 45 | 165 |
<artifactId>cometd-java-annotations</artifactId> |
| 58 | 166 |
<version>${cometd-version}</version> |
167 |
</dependency> |
|
168 |
<dependency> |
|
169 |
<groupId>org.cometd.java</groupId> |
|
170 |
<artifactId>cometd-websocket-jetty</artifactId> |
|
171 |
<version>${cometd-version}</version> |
|
172 |
</dependency> |
|
| 9 | 173 |
<dependency> |
174 |
<groupId>org.opencoweb</groupId> |
|
175 |
<artifactId>coweb-bots</artifactId> |
|
176 |
<version>${coweb-version}</version> |
|
177 |
</dependency> |
|
178 |
<dependency> |
|
179 |
<groupId>org.opencoweb</groupId> |
|
180 |
<artifactId>coweb-server</artifactId> |
|
181 |
<version>${coweb-version}</version> |
|
182 |
</dependency> |
|
183 |
<dependency> |
|
184 |
<groupId>org.opencoweb</groupId> |
|
185 |
<artifactId>coweb-javascript</artifactId> |
|
186 |
<version>${coweb-version}</version> |
|
187 |
<type>war</type> |
|
188 |
</dependency> |
|
189 |
<dependency> |
|
| 45 | 190 |
<groupId>org.opencoweb.cowebx</groupId> |
191 |
<artifactId>cowebx-widgets-dojo</artifactId> |
|
|
48
01fb9167ad75
Correct bug on insert, delete move objects
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
192 |
<version>${cowebx-version}</version> |
| 45 | 193 |
<type>war</type> |
194 |
</dependency> |
|
195 |
<dependency> |
|
| 9 | 196 |
<groupId>com.sun.jersey</groupId> |
197 |
<artifactId>jersey-server</artifactId> |
|
| 45 | 198 |
<version>${jersey-version}</version> |
| 9 | 199 |
</dependency> |
200 |
<dependency> |
|
|
164
8786006c553c
Add jsonp to get of single renkan resources.
ymh <ymh.work@gmail.com>
parents:
150
diff
changeset
|
201 |
<groupId>com.sun.jersey</groupId> |
|
8786006c553c
Add jsonp to get of single renkan resources.
ymh <ymh.work@gmail.com>
parents:
150
diff
changeset
|
202 |
<artifactId>jersey-json</artifactId> |
|
8786006c553c
Add jsonp to get of single renkan resources.
ymh <ymh.work@gmail.com>
parents:
150
diff
changeset
|
203 |
<version>${jersey-version}</version> |
|
8786006c553c
Add jsonp to get of single renkan resources.
ymh <ymh.work@gmail.com>
parents:
150
diff
changeset
|
204 |
</dependency> |
|
8786006c553c
Add jsonp to get of single renkan resources.
ymh <ymh.work@gmail.com>
parents:
150
diff
changeset
|
205 |
<dependency> |
| 45 | 206 |
<groupId>com.sun.jersey.contribs</groupId> |
207 |
<artifactId>jersey-spring</artifactId> |
|
208 |
<version>${jersey-version}</version> |
|
209 |
<exclusions> |
|
210 |
<exclusion> |
|
211 |
<groupId>org.springframework</groupId> |
|
212 |
<artifactId>spring-context</artifactId> |
|
213 |
</exclusion> |
|
214 |
<exclusion> |
|
215 |
<groupId>org.springframework</groupId> |
|
216 |
<artifactId>spring-beans</artifactId> |
|
217 |
</exclusion> |
|
218 |
<exclusion> |
|
219 |
<groupId>org.springframework</groupId> |
|
220 |
<artifactId>spring-core</artifactId> |
|
221 |
</exclusion> |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
222 |
<exclusion> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
223 |
<groupId>org.springframework</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
224 |
<artifactId>spring-web</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
225 |
</exclusion> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
226 |
<exclusion> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
227 |
<groupId>org.springframework</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
228 |
<artifactId>spring-aop</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
229 |
</exclusion> |
| 45 | 230 |
</exclusions> |
| 9 | 231 |
</dependency> |
| 71 | 232 |
<dependency> |
233 |
<groupId>com.sun.jersey.jersey-test-framework</groupId> |
|
234 |
<artifactId>jersey-test-framework-grizzly2</artifactId> |
|
235 |
<version>${jersey-version}</version> |
|
236 |
<scope>test</scope> |
|
237 |
</dependency> |
|
| 9 | 238 |
<dependency> |
239 |
<groupId>org.mongodb</groupId> |
|
240 |
<artifactId>mongo-java-driver</artifactId> |
|
| 58 | 241 |
<version>2.10.1</version> |
| 22 | 242 |
</dependency> |
243 |
<dependency> |
|
244 |
<groupId>org.slf4j</groupId> |
|
245 |
<artifactId>slf4j-log4j12</artifactId> |
|
| 71 | 246 |
<version>1.7.2</version> |
| 22 | 247 |
</dependency> |
| 45 | 248 |
<dependency> |
249 |
<groupId>org.springframework</groupId> |
|
250 |
<artifactId>spring-core</artifactId> |
|
251 |
<version>${spring-version}</version> |
|
252 |
</dependency> |
|
253 |
<dependency> |
|
254 |
<groupId>org.springframework</groupId> |
|
255 |
<artifactId>spring-context</artifactId> |
|
256 |
<version>${spring-version}</version> |
|
257 |
</dependency> |
|
258 |
<dependency> |
|
259 |
<groupId>org.springframework</groupId> |
|
260 |
<artifactId>spring-web</artifactId> |
|
261 |
<version>${spring-version}</version> |
|
262 |
</dependency> |
|
263 |
<dependency> |
|
264 |
<groupId>org.springframework</groupId> |
|
265 |
<artifactId>spring-test</artifactId> |
|
266 |
<version>${spring-version}</version> |
|
| 127 | 267 |
<scope>test</scope> |
| 45 | 268 |
</dependency> |
269 |
<dependency> |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
270 |
<groupId>org.springframework</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
271 |
<artifactId>spring-webmvc</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
272 |
<version>${spring-version}</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
273 |
</dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
274 |
<dependency> |
| 45 | 275 |
<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
|
276 |
<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
|
277 |
<version>1.5.0.RELEASE</version> |
| 45 | 278 |
</dependency> |
279 |
<dependency> |
|
280 |
<groupId>org.springframework.data</groupId> |
|
281 |
<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
|
282 |
<version>1.3.0.RELEASE</version> |
| 45 | 283 |
</dependency> |
284 |
<dependency> |
|
285 |
<groupId>org.springframework.data</groupId> |
|
286 |
<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
|
287 |
<version>1.2.0.RELEASE</version> |
| 45 | 288 |
</dependency> |
289 |
<dependency> |
|
290 |
<groupId>javax.persistence</groupId> |
|
291 |
<artifactId>persistence-api</artifactId> |
|
292 |
<version>1.0.2</version> |
|
293 |
</dependency> |
|
294 |
<dependency> |
|
295 |
<groupId>junit</groupId> |
|
296 |
<artifactId>junit</artifactId> |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
297 |
<version>${junit-version}</version> |
| 45 | 298 |
<scope>test</scope> |
|
47
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>javax.servlet</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
302 |
<artifactId>jstl</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
303 |
<version>1.2</version> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
304 |
<scope>runtime</scope> |
|
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 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
307 |
<groupId>org.thymeleaf</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
308 |
<artifactId>thymeleaf</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
309 |
<version>${thymeleaf-version}</version> |
|
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 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
312 |
<groupId>org.thymeleaf</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
313 |
<artifactId>thymeleaf-spring3</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
314 |
<version>${thymeleaf-version}</version> |
|
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 |
<dependency> |
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
317 |
<groupId>org.thymeleaf.extras</groupId> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
318 |
<artifactId>thymeleaf-extras-springsecurity3</artifactId> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
319 |
<version>${thymeleaf-springsecurity-version}</version> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
320 |
</dependency> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
321 |
<dependency> |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
322 |
<groupId>net.sourceforge.nekohtml</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
323 |
<artifactId>nekohtml</artifactId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
324 |
<version>1.9.16</version> |
|
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 |
<dependency> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
327 |
<groupId>com.fasterxml.jackson.jaxrs</groupId> |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
45
diff
changeset
|
328 |
<artifactId>jackson-jaxrs-json-provider</artifactId> |
| 71 | 329 |
<version>${jackson-version}</version> |
| 51 | 330 |
</dependency> |
331 |
<dependency> |
|
332 |
<groupId>commons-codec</groupId> |
|
333 |
<artifactId>commons-codec</artifactId> |
|
334 |
<version>1.7</version> |
|
335 |
</dependency> |
|
| 58 | 336 |
<dependency> |
337 |
<groupId>org.eclipse.jetty</groupId> |
|
338 |
<artifactId>jetty-server</artifactId> |
|
339 |
<version>${jetty-version}</version> |
|
340 |
</dependency> |
|
341 |
<dependency> |
|
342 |
<groupId>org.eclipse.jetty</groupId> |
|
343 |
<artifactId>jetty-client</artifactId> |
|
344 |
<version>${jetty-version}</version> |
|
345 |
</dependency> |
|
346 |
<dependency> |
|
347 |
<groupId>org.eclipse.jetty</groupId> |
|
348 |
<artifactId>jetty-websocket</artifactId> |
|
349 |
<version>${jetty-version}</version> |
|
350 |
</dependency> |
|
351 |
<dependency> |
|
352 |
<groupId>org.eclipse.jetty</groupId> |
|
353 |
<artifactId>jetty-jmx</artifactId> |
|
354 |
<version>${jetty-version}</version> |
|
355 |
</dependency> |
|
356 |
<dependency> |
|
357 |
<groupId>org.eclipse.jetty</groupId> |
|
358 |
<artifactId>jetty-util</artifactId> |
|
359 |
<version>${jetty-version}</version> |
|
| 71 | 360 |
</dependency> |
361 |
<dependency> |
|
|
106
d34e253f5c32
Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents:
103
diff
changeset
|
362 |
<groupId>org.eclipse.jetty</groupId> |
|
d34e253f5c32
Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents:
103
diff
changeset
|
363 |
<artifactId>jetty-servlets</artifactId> |
|
d34e253f5c32
Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents:
103
diff
changeset
|
364 |
<version>${jetty-version}</version> |
|
d34e253f5c32
Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents:
103
diff
changeset
|
365 |
</dependency> |
|
d34e253f5c32
Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents:
103
diff
changeset
|
366 |
<dependency> |
| 71 | 367 |
<groupId>org.springframework.security</groupId> |
368 |
<artifactId>spring-security-core</artifactId> |
|
369 |
<version>${spring-security-version}</version> |
|
370 |
</dependency> |
|
371 |
<dependency> |
|
372 |
<groupId>org.springframework.security</groupId> |
|
373 |
<artifactId>spring-security-web</artifactId> |
|
374 |
<version>${spring-security-version}</version> |
|
375 |
</dependency> |
|
376 |
<dependency> |
|
377 |
<groupId>org.springframework.security</groupId> |
|
378 |
<artifactId>spring-security-config</artifactId> |
|
379 |
<version>${spring-security-version}</version> |
|
380 |
</dependency> |
|
381 |
<dependency> |
|
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
382 |
<groupId>org.springframework.security</groupId> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
383 |
<artifactId>spring-security-acl</artifactId> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
384 |
<version>${spring-security-version}</version> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
385 |
</dependency> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
386 |
<dependency> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
387 |
<groupId>org.springframework.security</groupId> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
388 |
<artifactId>spring-security-taglibs</artifactId> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
389 |
<version>${spring-security-version}</version> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
390 |
</dependency> |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
147
diff
changeset
|
391 |
<dependency> |
| 71 | 392 |
<groupId>de.undercouch</groupId> |
393 |
<artifactId>bson4jackson</artifactId> |
|
394 |
<version>2.1.1</version> |
|
395 |
</dependency> |
|
396 |
<dependency> |
|
397 |
<groupId>joda-time</groupId> |
|
398 |
<artifactId>joda-time</artifactId> |
|
399 |
<version>${joda-version}</version> |
|
| 127 | 400 |
</dependency> |
401 |
<dependency> |
|
402 |
<groupId>javax.validation</groupId> |
|
403 |
<artifactId>validation-api</artifactId> |
|
404 |
<version>1.1.0.CR2</version> |
|
| 58 | 405 |
</dependency> |
| 127 | 406 |
<dependency> |
407 |
<groupId>org.hibernate</groupId> |
|
408 |
<artifactId>hibernate-validator</artifactId> |
|
409 |
<version>4.2.0.Final</version> |
|
410 |
</dependency> |
|
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
411 |
<dependency> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
412 |
<groupId>com.fasterxml.uuid</groupId> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
413 |
<artifactId>java-uuid-generator</artifactId> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
414 |
<version>3.1.3</version> |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
415 |
</dependency> |
| 9 | 416 |
</dependencies> |
417 |
<organization> |
|
418 |
<name>IRI</name> |
|
419 |
<url>http://www.iri.centrepompidou.fr</url> |
|
420 |
</organization> |
|
421 |
</project> |