Newer
Older
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy</artifactId>
<version>0.8-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy-ear</artifactId>
<version>0.8-SNAPSHOT</version>
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<packaging>ear</packaging>
<name>gazelle-proxy - EAR</name>
<dependencies>
<dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam</artifactId>
<version>${version.seam}</version>
<type>ejb</type>
<exclusions>
<exclusion>
<groupId>xstream</groupId>
<artifactId>xstream</artifactId>
</exclusion>
<exclusion>
<groupId>xpp3</groupId>
<artifactId>xpp3_min</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jboss.el</groupId>
<artifactId>jboss-el</artifactId>
<exclusions>
<exclusion>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<version>${version.richfaces}</version>
<exclusions>
<exclusion>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- JBoss Rules -->
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-core</artifactId>
<version>${version.drools}</version>
<exclusions>
<exclusion>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-api</artifactId>
<version>${version.drools}</version>
</dependency>
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-compiler</artifactId>
<version>${version.drools}</version>
</dependency>
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-decisiontables</artifactId>
<version>${version.drools}</version>
</dependency>
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-templates</artifactId>
<version>${version.drools}</version>
</dependency>
<!-- JBoss jBPM -->
<dependency>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-jpdl</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Application modules -->
<dependency>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy-war</artifactId>
<type>war</type>
</dependency>
<dependency>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy-datamodel</artifactId>
</dependency>
<dependency>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy-ejb</artifactId>
<type>ejb</type>
<exclusions>
<exclusion>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.ihe.gazelle.datable</groupId>
<artifactId>gazelle-datatable-jar</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<!-- <version>5</version> -->
<finalName>gazelle-proxy</finalName>
<filtering>true</filtering>
<modules>
<webModule>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy-war</artifactId>
<unpack>${exploded.war.file}</unpack>
</webModule>
<jarModule>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy-datamodel</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy-netty</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<ejbModule>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy-ejb</artifactId>
<bundleFileName>gazelle-proxy-ejb.jar</bundleFileName>
</ejbModule>
<groupId>net.ihe.gazelle.datable</groupId>
<artifactId>gazelle-datatable-jar</artifactId>
<bundleFileName>gazelle-datatable-jar.jar</bundleFileName>
<jarModule>
<groupId>net.ihe.gazelle.simulators.tls</groupId>
<artifactId>TLSSimulator-pki-jar</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
<bundleFileName>TLSSimulator-pki-jar.jar</bundleFileName>
</jarModule>
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<ejbModule>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam</artifactId>
</ejbModule>
<jarModule>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
<jarModule>
<groupId>org.jboss.el</groupId>
<artifactId>jboss-el</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
<jarModule>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
<!-- JBoss Rules -->
<jarModule>
<groupId>org.drools</groupId>
<artifactId>drools-core</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
<jarModule>
<groupId>org.drools</groupId>
<artifactId>drools-api</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
<jarModule>
<groupId>org.drools</groupId>
<artifactId>drools-compiler</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
<jarModule>
<groupId>org.drools</groupId>
<artifactId>drools-decisiontables</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
<jarModule>
<groupId>org.drools</groupId>
<artifactId>drools-templates</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
<jarModule>
<groupId>org.antlr</groupId>
<artifactId>antlr-runtime</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
<jarModule>
<groupId>janino</groupId>
<artifactId>janino</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
<jarModule>
<groupId>org.eclipse.jdt</groupId>
<artifactId>core</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
<jarModule>
<groupId>org.mvel</groupId>
<artifactId>mvel2</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
<!-- JBoss jBPM -->
<jarModule>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-jpdl</artifactId>
<bundleDir>lib</bundleDir>
</jarModule>
</modules>
<jboss>
<version>${version.jboss.app}</version>
<loader-repository>gazelle-proxy:app=ejb3</loader-repository>
<data-sources>
<data-source>gazelle-proxy-ds.xml</data-source>
</data-sources>
</jboss>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<outputDirectory>${basedir}/target</outputDirectory>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
</resource>
</resources>
</build>
</project>