forked from arquillian/arquillian_deprecated
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
103 lines (83 loc) · 2.55 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
vi:ts=2:sw=2:expandtab:
-->
<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.arquillian</groupId>
<artifactId>arquillian-build</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>build/pom.xml</relativePath>
</parent>
<!-- Model Information -->
<modelVersion>4.0.0</modelVersion>
<!-- Plugin Configuration -->
<build>
<plugins>
<!-- Deploy -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<!-- Don't include this aggregator in the deployment -->
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<!-- Artifact Information -->
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Arquillian Aggregator</name>
<url>http://www.jboss.org</url>
<description>Arquillian Aggregator</description>
<!-- Profiles -->
<profiles>
<!-- Build all Arquillian modules -->
<profile>
<id>all</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<!-- Core -->
<module>api</module>
<module>spi</module>
<module>build</module>
<module>impl-base</module>
<!-- Tools -->
<!-- module>archetypes/junit-javaee6</module -->
<!-- Test Framework -->
<module>junit</module>
<module>testng</module>
<!-- Extensions -->
<module>testenrichers</module>
<module>protocols</module>
<module>containers</module>
<module>frameworks</module>
<module>examples</module>
<module>doc/reference</module>
</modules>
</profile>
<!-- Build Arquillian OSGi modules -->
<profile>
<id>osgi</id>
<modules>
<!-- Core -->
<module>api</module>
<module>spi</module>
<module>impl-base</module>
<!-- Test Framework -->
<module>junit</module>
<!-- Extensions -->
<module>testenrichers</module>
<module>protocols</module>
<module>containers</module>
</modules>
</profile>
</profiles>
</project>