forked from arquillian/arquillian-container-tomcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
149 lines (134 loc) · 5.61 KB
/
pom.xml
1
2
3
4
5
6
7
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
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
143
144
145
146
147
148
149
<?xml version="1.0" encoding="UTF-8"?>
<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">
<!-- Parent -->
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>8</version>
<relativePath />
</parent>
<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>
<!-- Artifact Configuration -->
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-parent-tomcat</artifactId>
<version>1.0.0.Final-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Arquillian Container Parent Tomcat</name>
<description>Tomcat Container integrations for the Arquillian Project</description>
<scm>
<connection>scm:git:git://[email protected]:arquillian/arquillian-container-tomcat.git</connection>
<developerConnection>scm:git:ssh://github.com/arquillian/arquillian-container-tomcat.git</developerConnection>
<url>git://github.com/arquillian/arquillian-container-tomcat.git</url>
</scm>
<!-- Properties -->
<properties>
<!-- Versioning -->
<version.arquillian_core>1.0.0.Final</version.arquillian_core>
<version.shrinkwrap_tomcat>1.0.0-beta-1</version.shrinkwrap_tomcat>
<version.jboss_spec>1.0.0.Final</version.jboss_spec>
<version.weld_servlet>1.1.8.Final</version.weld_servlet>
<!-- override from parent -->
<maven.compiler.argument.target>1.5</maven.compiler.argument.target>
<maven.compiler.argument.source>1.5</maven.compiler.argument.source>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-bom</artifactId>
<version>${version.arquillian_core}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-build</artifactId>
<version>${version.arquillian_core}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.container</groupId>
<artifactId>shrinkwrap-container-tomcat-60</artifactId>
<version>${version.shrinkwrap_tomcat}</version>
</dependency>
<!-- test dependecies -->
<dependency>
<groupId>org.jboss.weld.servlet</groupId>
<artifactId>weld-servlet</artifactId>
<version>${version.weld_servlet}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.servlet</groupId>
<artifactId>jboss-servlet-api_3.0_spec</artifactId>
<version>${version.jboss_spec}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>signature-check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java15</artifactId>
<version>1.0</version>
</signature>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>build-server</id>
<build>
<plugins>
<!--
surefire default forks the JVM for testing, so we need to pass on the maven.repo.local variable so the MavenResovler used in
the test cases can read from the same lcoal repo.
-->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<maven.repo.local>${maven.repo.local}</maven.repo.local>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<modules>
<module>tomcat-common</module>
<module>tomcat-managed-5.5</module>
<module>tomcat-embedded-6</module>
<module>tomcat-remote-6</module>
<module>tomcat-managed-6</module>
<module>tomcat-embedded-7</module>
<module>tomcat-managed-7</module>
</modules>
</project>