Newer
Older
gazelle CI Rennes
committed
<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>4.4.1</version>
8
9
10
11
12
13
14
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
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>gazelle-proxy-ear</artifactId>
<packaging>ear</packaging>
<name>gazelle-proxy - EAR</name>
<build>
<plugins>
<plugin>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<version>5</version>
<filtering>true</filtering>
<finalName>gazelle-proxy</finalName>
<!-- use for generating the jboss-app.xml file -->
<!-- use for generating the application.xml file -->
<includeLibInApplicationXml>false</includeLibInApplicationXml>
<defaultLibBundleDir>lib</defaultLibBundleDir>
<modules>
<webModule>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy-war</artifactId>
<contextRoot>proxy</contextRoot>
<bundleFileName>gazelle-proxy-war.war</bundleFileName>
</webModule>
<ejbModule>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy-jar</artifactId>
<uri>gazelle-proxy-jar.jar</uri>
</ejbModule>
<ejbModule>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy-ejb</artifactId>
<bundleFileName>gazelle-proxy-ejb.jar</bundleFileName>
</ejbModule>
<ejbModule>
<groupId>net.ihe.gazelle.maven</groupId>
<artifactId>gazelle-seam-tools-jar</artifactId>
<uri>gazelle-seam-tools-jar.jar</uri>
</ejbModule>
<ejbModule>
<groupId>net.ihe.gazelle.maven</groupId>
<artifactId>version</artifactId>
<uri>version.jar</uri>
</ejbModule>
</modules>
<version>6</version>
</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>
<dependencies>
<!-- 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-netty</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy-jar</artifactId>
<type>ejb</type>
</dependency>
<dependency>
<groupId>net.ihe.gazelle.proxy</groupId>
<artifactId>gazelle-proxy-ejb</artifactId>
<type>ejb</type>
</dependency>
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
<!-- to exclude them from jboss lib if in dev mode -->
<dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam</artifactId>
<version>${version.seam}</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-ui</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-debug</artifactId>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
</dependency>
<dependency>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-impl</artifactId>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
</dependency>
<dependency>
<groupId>net.ihe.gazelle.cdk</groupId>
<artifactId>cdk-tags</artifactId>
</dependency>
</dependencies>