1
|
<project
|
2
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
3
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
5
|
<modelVersion>4.0.0</modelVersion>
|
6
|
|
7
|
<parent>
|
8
|
<groupId>org.nuxeo.ecm.distribution</groupId>
|
9
|
<artifactId>nuxeo-distribution</artifactId>
|
10
|
<version>5.4.2</version>
|
11
|
<relativePath>../pom.xml</relativePath>
|
12
|
</parent>
|
13
|
|
14
|
<artifactId>nuxeo-distribution-tomcat</artifactId>
|
15
|
<packaging>pom</packaging>
|
16
|
<name>Nuxeo Tomcat Build</name>
|
17
|
<description>Package Nuxeo CAP or DM WAR with Tomcat</description>
|
18
|
|
19
|
<dependencies>
|
20
|
<dependency>
|
21
|
<groupId>org.nuxeo.runtime</groupId>
|
22
|
<artifactId>nuxeo-runtime-jtajca</artifactId>
|
23
|
</dependency>
|
24
|
<dependency>
|
25
|
<groupId>org.nuxeo.ecm.platform</groupId>
|
26
|
<artifactId>nuxeo-platform-ws-sun-jaxws</artifactId>
|
27
|
</dependency>
|
28
|
<dependency>
|
29
|
<groupId>commons-el</groupId>
|
30
|
<artifactId>commons-el</artifactId>
|
31
|
</dependency>
|
32
|
<dependency>
|
33
|
<groupId>org.jboss.el</groupId>
|
34
|
<artifactId>jboss-el</artifactId>
|
35
|
</dependency>
|
36
|
<dependency>
|
37
|
<groupId>javax.servlet</groupId>
|
38
|
<artifactId>jstl</artifactId>
|
39
|
</dependency>
|
40
|
<dependency>
|
41
|
<groupId>org.jboss.naming</groupId>
|
42
|
<artifactId>jnp-client</artifactId>
|
43
|
</dependency>
|
44
|
<dependency>
|
45
|
<groupId>org.jboss.logging</groupId>
|
46
|
<artifactId>jboss-logging-spi</artifactId>
|
47
|
</dependency>
|
48
|
<dependency>
|
49
|
<groupId>javassist</groupId>
|
50
|
<artifactId>javassist</artifactId>
|
51
|
</dependency>
|
52
|
<dependency>
|
53
|
<groupId>org.jboss</groupId>
|
54
|
<artifactId>jboss-common-core</artifactId>
|
55
|
</dependency>
|
56
|
<dependency>
|
57
|
<groupId>metro.webservices</groupId>
|
58
|
<artifactId>webservices-rt</artifactId>
|
59
|
</dependency>
|
60
|
<dependency>
|
61
|
<groupId>metro.webservices</groupId>
|
62
|
<artifactId>webservices-tools</artifactId>
|
63
|
</dependency>
|
64
|
</dependencies>
|
65
|
|
66
|
<profiles>
|
67
|
<profile>
|
68
|
<id>all-distributions</id>
|
69
|
<!-- profile for building all classifiers -->
|
70
|
</profile>
|
71
|
<profile>
|
72
|
<id>all</id>
|
73
|
<!-- profile for building all classifiers -->
|
74
|
<activation>
|
75
|
<activeByDefault>true</activeByDefault>
|
76
|
</activation>
|
77
|
</profile>
|
78
|
<profile>
|
79
|
<id>nuxeo-cap</id>
|
80
|
<!-- profile for building Tomcat with only Nuxeo CAP -->
|
81
|
</profile>
|
82
|
<profile>
|
83
|
<id>nuxeo-dm</id>
|
84
|
<!-- default profile for building Tomcat with only Nuxeo DM -->
|
85
|
</profile>
|
86
|
</profiles>
|
87
|
|
88
|
<build>
|
89
|
<plugins>
|
90
|
<plugin>
|
91
|
<groupId>org.nuxeo.build</groupId>
|
92
|
<artifactId>nuxeo-distribution-tools</artifactId>
|
93
|
<configuration>
|
94
|
<buildFile>${basedir}/src/main/assemble/assembly.xml</buildFile>
|
95
|
</configuration>
|
96
|
<executions>
|
97
|
<execution>
|
98
|
<id>packaging</id>
|
99
|
<goals>
|
100
|
<goal>build</goal>
|
101
|
</goals>
|
102
|
<phase>package</phase>
|
103
|
</execution>
|
104
|
</executions>
|
105
|
</plugin>
|
106
|
</plugins>
|
107
|
</build>
|
108
|
|
109
|
</project>
|