|
|
@@ -1,4 +1,5 @@
|
|
1
|
|
-<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/maven-v4_0_0.xsd">
|
|
|
1
|
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
2
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
2
|
3
|
<modelVersion>4.0.0</modelVersion>
|
|
3
|
4
|
<groupId>se.citerus</groupId>
|
|
4
|
5
|
<artifactId>dddsample</artifactId>
|
|
|
@@ -15,7 +16,7 @@
|
|
15
|
16
|
<url>scp://shell.sf.net/home/groups/d/dd/dddsample/htdocs</url>
|
|
16
|
17
|
</site>
|
|
17
|
18
|
</distributionManagement>
|
|
18
|
|
- <ciManagement />
|
|
|
19
|
+ <ciManagement/>
|
|
19
|
20
|
<repositories>
|
|
20
|
21
|
<repository>
|
|
21
|
22
|
<id>maven2-repository.dev.java.net</id>
|
|
|
@@ -91,7 +92,8 @@
|
|
91
|
92
|
<url>http://ddd.sventon.org</url>
|
|
92
|
93
|
</scm>
|
|
93
|
94
|
<properties>
|
|
94
|
|
- <spring.version>2.5.1</spring.version>
|
|
|
95
|
+ <spring.version>2.5.6</spring.version>
|
|
|
96
|
+ <cxf.version>2.1.3</cxf.version>
|
|
95
|
97
|
</properties>
|
|
96
|
98
|
<build>
|
|
97
|
99
|
<plugins>
|
|
|
@@ -115,25 +117,34 @@
|
|
115
|
117
|
</configuration>
|
|
116
|
118
|
</plugin>
|
|
117
|
119
|
|
|
118
|
|
- <!-- JAX-WS generation plugin -->
|
|
|
120
|
+ <!-- Generates WSDL from Java -->
|
|
119
|
121
|
<plugin>
|
|
120
|
|
- <groupId>org.codehaus.mojo</groupId>
|
|
121
|
|
- <artifactId>jaxws-maven-plugin</artifactId>
|
|
122
|
|
- <version>1.9</version>
|
|
|
122
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
123
|
+ <artifactId>cxf-java2ws-plugin</artifactId>
|
|
|
124
|
+ <version>${cxf.version}</version>
|
|
|
125
|
+ <dependencies>
|
|
|
126
|
+ <dependency>
|
|
|
127
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
128
|
+ <artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|
|
129
|
+ <version>${cxf.version}</version>
|
|
|
130
|
+ </dependency>
|
|
|
131
|
+ </dependencies>
|
|
123
|
132
|
<executions>
|
|
124
|
133
|
<execution>
|
|
|
134
|
+ <phase>process-classes</phase>
|
|
|
135
|
+ <configuration>
|
|
|
136
|
+ <className>se.citerus.dddsample.interfaces.handling.ws.HandlingReportService</className>
|
|
|
137
|
+ <genWsdl>true</genWsdl>
|
|
|
138
|
+ <verbose>true</verbose>
|
|
|
139
|
+ </configuration>
|
|
125
|
140
|
<goals>
|
|
126
|
|
- <goal>wsgen</goal>
|
|
|
141
|
+ <goal>java2ws</goal>
|
|
127
|
142
|
</goals>
|
|
128
|
143
|
</execution>
|
|
129
|
144
|
</executions>
|
|
130
|
|
- <configuration>
|
|
131
|
|
- <sei>se.citerus.dddsample.interfaces.handling.ws.HandlingReportServiceImpl</sei>
|
|
132
|
|
- <genWsdl>true</genWsdl>
|
|
133
|
|
- </configuration>
|
|
134
|
145
|
</plugin>
|
|
135
|
146
|
|
|
136
|
|
- <!-- Jar plugin for generation of WS Client classes -->
|
|
|
147
|
+ <!-- Package WS api classes -->
|
|
137
|
148
|
<plugin>
|
|
138
|
149
|
<artifactId>maven-jar-plugin</artifactId>
|
|
139
|
150
|
<executions>
|
|
|
@@ -145,13 +156,14 @@
|
|
145
|
156
|
<configuration>
|
|
146
|
157
|
<classifier>ws-client</classifier>
|
|
147
|
158
|
<includes>
|
|
148
|
|
- <include>**/se/citerus/dddsample/application/ws/**</include>
|
|
|
159
|
+ <include>**/se/citerus/dddsample/interfaces/handling/ws/*</include>
|
|
149
|
160
|
</includes>
|
|
150
|
161
|
</configuration>
|
|
151
|
162
|
</execution>
|
|
152
|
163
|
</executions>
|
|
153
|
164
|
</plugin>
|
|
154
|
165
|
|
|
|
166
|
+ <!-- Assembly -->
|
|
155
|
167
|
<plugin>
|
|
156
|
168
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
157
|
169
|
<configuration>
|
|
|
@@ -203,18 +215,30 @@
|
|
203
|
215
|
</dependency>
|
|
204
|
216
|
<dependency>
|
|
205
|
217
|
<groupId>org.hibernate</groupId>
|
|
206
|
|
- <artifactId>hibernate</artifactId>
|
|
207
|
|
- <version>3.2.5.ga</version>
|
|
|
218
|
+ <artifactId>hibernate-core</artifactId>
|
|
|
219
|
+ <version>3.3.1.GA</version>
|
|
|
220
|
+ <!-- God, what is it with Java and logging frameworks... http://forum.hibernate.org/viewtopic.php?p=2401380 -->
|
|
|
221
|
+ <exclusions>
|
|
|
222
|
+ <exclusion>
|
|
|
223
|
+ <groupId>org.slf4j</groupId>
|
|
|
224
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
225
|
+ </exclusion>
|
|
|
226
|
+ </exclusions>
|
|
208
|
227
|
</dependency>
|
|
209
|
228
|
<dependency>
|
|
210
|
|
- <groupId>org.hibernate</groupId>
|
|
211
|
|
- <artifactId>hibernate-annotations</artifactId>
|
|
212
|
|
- <version>3.3.0.ga</version>
|
|
|
229
|
+ <groupId>org.slf4j</groupId>
|
|
|
230
|
+ <artifactId>slf4j-log4j12</artifactId>
|
|
|
231
|
+ <version>1.5.6</version>
|
|
|
232
|
+ </dependency>
|
|
|
233
|
+ <dependency>
|
|
|
234
|
+ <groupId>javassist</groupId>
|
|
|
235
|
+ <artifactId>javassist</artifactId>
|
|
|
236
|
+ <version>3.8.0.GA</version>
|
|
213
|
237
|
</dependency>
|
|
214
|
238
|
<dependency>
|
|
215
|
239
|
<groupId>org.hibernate</groupId>
|
|
216
|
|
- <artifactId>hibernate-commons-annotations</artifactId>
|
|
217
|
|
- <version>3.3.0.ga</version>
|
|
|
240
|
+ <artifactId>hibernate-annotations</artifactId>
|
|
|
241
|
+ <version>3.4.0.GA</version>
|
|
218
|
242
|
</dependency>
|
|
219
|
243
|
<dependency>
|
|
220
|
244
|
<groupId>commons-lang</groupId>
|
|
|
@@ -227,21 +251,6 @@
|
|
227
|
251
|
<version>1.3.1</version>
|
|
228
|
252
|
</dependency>
|
|
229
|
253
|
<dependency>
|
|
230
|
|
- <groupId>commons-logging</groupId>
|
|
231
|
|
- <artifactId>commons-logging</artifactId>
|
|
232
|
|
- <version>1.1</version>
|
|
233
|
|
- <exclusions>
|
|
234
|
|
- <exclusion>
|
|
235
|
|
- <groupId>avalon-framework</groupId>
|
|
236
|
|
- <artifactId>avalon-framework</artifactId>
|
|
237
|
|
- </exclusion>
|
|
238
|
|
- <exclusion>
|
|
239
|
|
- <groupId>logkit</groupId>
|
|
240
|
|
- <artifactId>logkit</artifactId>
|
|
241
|
|
- </exclusion>
|
|
242
|
|
- </exclusions>
|
|
243
|
|
- </dependency>
|
|
244
|
|
- <dependency>
|
|
245
|
254
|
<groupId>commons-dbcp</groupId>
|
|
246
|
255
|
<artifactId>commons-dbcp</artifactId>
|
|
247
|
256
|
<version>1.2.2</version>
|
|
|
@@ -276,23 +285,12 @@
|
|
276
|
285
|
<dependency>
|
|
277
|
286
|
<groupId>org.apache.activemq</groupId>
|
|
278
|
287
|
<artifactId>activemq-core</artifactId>
|
|
279
|
|
- <version>5.0.0</version>
|
|
280
|
|
- <exclusions>
|
|
281
|
|
- <!--
|
|
282
|
|
- This is a snapshot dependency, with no published pom.
|
|
283
|
|
- It does not appear to be needed either:
|
|
284
|
|
-
|
|
285
|
|
- http://mail-archives.apache.org/mod_mbox/activemq-commits/200610.mbox/%3C20061005025744.0C6591A981A@eris.apache.org%3E
|
|
286
|
|
- -->
|
|
287
|
|
- <exclusion>
|
|
288
|
|
- <groupId>org.apache.activemq</groupId>
|
|
289
|
|
- <artifactId>activeio-core</artifactId>
|
|
290
|
|
- </exclusion>
|
|
291
|
|
- <exclusion>
|
|
292
|
|
- <groupId>javax.xml</groupId>
|
|
293
|
|
- <artifactId>jaxb-api</artifactId>
|
|
294
|
|
- </exclusion>
|
|
295
|
|
- </exclusions>
|
|
|
288
|
+ <version>5.2.0</version>
|
|
|
289
|
+ </dependency>
|
|
|
290
|
+ <dependency>
|
|
|
291
|
+ <groupId>org.apache.xbean</groupId>
|
|
|
292
|
+ <artifactId>xbean-spring</artifactId>
|
|
|
293
|
+ <version>3.4.3</version>
|
|
296
|
294
|
</dependency>
|
|
297
|
295
|
<dependency>
|
|
298
|
296
|
<groupId>org.easymock</groupId>
|
|
|
@@ -300,72 +298,15 @@
|
|
300
|
298
|
<version>2.3</version>
|
|
301
|
299
|
<scope>test</scope>
|
|
302
|
300
|
</dependency>
|
|
303
|
|
-
|
|
304
|
|
- <!-- JAX-WS integration with Spring. Lots of broken pom files unfortunately,
|
|
305
|
|
- so we need a few excluded-and-overridden dependencies.
|
|
306
|
|
- This problem will mostly go away when we move to Java 6.
|
|
307
|
|
-
|
|
308
|
|
- javax.activation is excluded because of class loading issues with Jetty:
|
|
309
|
|
- http://jira.codehaus.org/browse/JETTY-420
|
|
310
|
|
- -->
|
|
311
|
|
- <dependency>
|
|
312
|
|
- <groupId>org.jvnet.jax-ws-commons.spring</groupId>
|
|
313
|
|
- <artifactId>jaxws-spring</artifactId>
|
|
314
|
|
- <version>1.8</version>
|
|
315
|
|
- <exclusions>
|
|
316
|
|
- <exclusion>
|
|
317
|
|
- <groupId>org.springframework</groupId>
|
|
318
|
|
- <artifactId>spring</artifactId>
|
|
319
|
|
- </exclusion>
|
|
320
|
|
- <exclusion>
|
|
321
|
|
- <groupId>com.sun.xml.stream.buffer</groupId>
|
|
322
|
|
- <artifactId>streambuffer</artifactId>
|
|
323
|
|
- </exclusion>
|
|
324
|
|
- <exclusion>
|
|
325
|
|
- <groupId>org.jvnet.staxex</groupId>
|
|
326
|
|
- <artifactId>stax-ex</artifactId>
|
|
327
|
|
- </exclusion>
|
|
328
|
|
- <exclusion>
|
|
329
|
|
- <groupId>javax.activation</groupId>
|
|
330
|
|
- <artifactId>activation</artifactId>
|
|
331
|
|
- </exclusion>
|
|
332
|
|
- </exclusions>
|
|
333
|
|
- </dependency>
|
|
334
|
|
- <dependency>
|
|
335
|
|
- <groupId>org.jvnet.staxex</groupId>
|
|
336
|
|
- <artifactId>stax-ex</artifactId>
|
|
337
|
|
- <version>1.2</version>
|
|
338
|
|
- <scope>runtime</scope>
|
|
339
|
|
- <exclusions>
|
|
340
|
|
- <exclusion>
|
|
341
|
|
- <groupId>javax.activation</groupId>
|
|
342
|
|
- <artifactId>activation</artifactId>
|
|
343
|
|
- </exclusion>
|
|
344
|
|
- </exclusions>
|
|
345
|
|
- </dependency>
|
|
346
|
301
|
<dependency>
|
|
347
|
|
- <groupId>com.sun.xml.stream.buffer</groupId>
|
|
348
|
|
- <artifactId>streambuffer</artifactId>
|
|
349
|
|
- <version>0.7</version>
|
|
350
|
|
- <scope>runtime</scope>
|
|
351
|
|
- <exclusions>
|
|
352
|
|
- <exclusion>
|
|
353
|
|
- <groupId>javax.activation</groupId>
|
|
354
|
|
- <artifactId>activation</artifactId>
|
|
355
|
|
- </exclusion>
|
|
356
|
|
- </exclusions>
|
|
|
302
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
303
|
+ <artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|
|
304
|
+ <version>${cxf.version}</version>
|
|
357
|
305
|
</dependency>
|
|
358
|
306
|
<dependency>
|
|
359
|
|
- <groupId>com.sun.xml.ws</groupId>
|
|
360
|
|
- <artifactId>jaxws-rt</artifactId>
|
|
361
|
|
- <version>2.1.3</version>
|
|
362
|
|
- <scope>runtime</scope>
|
|
363
|
|
- </dependency>
|
|
364
|
|
- <dependency>
|
|
365
|
|
- <groupId>com.sun.istack</groupId>
|
|
366
|
|
- <artifactId>istack-commons-runtime</artifactId>
|
|
367
|
|
- <version>1.0</version>
|
|
368
|
|
- <scope>runtime</scope>
|
|
|
307
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
308
|
+ <artifactId>cxf-rt-transports-http</artifactId>
|
|
|
309
|
+ <version>${cxf.version}</version>
|
|
369
|
310
|
</dependency>
|
|
370
|
311
|
</dependencies>
|
|
371
|
312
|
|