forked from shrinkwrap/shrinkwrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
115 lines (103 loc) · 3.16 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
<?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</groupId>
<artifactId>jboss-parent</artifactId>
<version>5</version>
</parent>
<!-- Model Information -->
<modelVersion>4.0.0</modelVersion>
<!-- Artifact Information -->
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>ShrinkWrap Aggregator</name>
<url>http://www.jboss.org</url>
<description>ShrinkWrap Aggregator</description>
<!-- 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>
<!-- Assembly Plugin -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>shrinkwrap-${project.version}</finalName>
<descriptors>
<descriptor>dist.xml</descriptor>
</descriptors>
</configuration>
<inherited>false</inherited>
</plugin>
</plugins>
</build>
<!-- Aggregate Modules -->
<modules>
<module>api</module>
<module>build</module>
<module>impl-base</module>
<module>spi</module>
<module>extension-sip</module>
<module>extension-glassfish</module>
<module>extension-tomcat-6</module>
<module>extension-mobicents-sip-servlets-1.x</module>
<module>extension-jetty-6</module>
<module>extension-jetty-7</module>
<module>extension-openejb</module>
<module>extension-vfs3</module>
<module>extension-vdf</module>
</modules>
<repositories>
<repository>
<id>jboss-public-repository</id>
<name>JBoss Repository</name>
<url> https://repository.jboss.org/nexus/content/groups/public </url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>jboss-public-repository</id>
<name>JBoss Repository</name>
<url> https://repository.jboss.org/nexus/content/groups/public </url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>