forked from jboss-developer/jboss-eap-quickstarts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
195 lines (190 loc) · 7.92 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<?xml version="1.0" encoding="UTF-8"?>
<!-- JBoss, Home of Professional Open Source Copyright 2012, Red Hat, Inc.
and/or its affiliates, and individual contributors by the @authors tag. See
the copyright.txt in the distribution for a full listing of individual contributors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. -->
<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>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>8</version>
<relativePath />
</parent>
<groupId>org.jboss.as.quickstarts</groupId>
<artifactId>jboss-as-quickstarts-parent</artifactId>
<version>7.1.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JBoss AS Quickstarts Parent</name>
<description>JBoss AS Quickstarts Parent</description>
<url>http://github.com/jbossas/quickstart</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<distribution>repo</distribution>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>
<profiles>
<profile>
<!-- All the quickstarts that require Postgres to be running -->
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>default</name>
<value>!disabled</value>
</property>
</activation>
<modules>
<!-- All the modules that require nothing but JBoss Enterprise
Application Platform or JBoss AS -->
<module>bean-validation</module>
<module>bmt</module>
<module>cdi-injection</module>
<module>ejb-in-ear</module>
<module>ejb-in-war</module>
<module>ejb-remote</module>
<module>ejb-security</module>
<module>greeter</module>
<module>helloworld</module>
<module>helloworld-errai</module>
<module>helloworld-gwt</module>
<module>helloworld-html5</module>
<module>helloworld-jms</module>
<module>helloworld-jsf</module>
<module>helloworld-osgi</module>
<module>helloworld-rs</module>
<module>helloworld-singleton</module>
<!-- Hibernate 3 is broken on AS 7.1.1 - see https://github.com/jbossas/quickstart/issues/186 -->
<!-- <module>hibernate3</module> -->
<module>hibernate4</module>
<module>kitchensink</module>
<module>kitchensink-ear</module>
<module>kitchensink-html5-mobile</module>
<module>kitchensink-jsp</module>
<module>log4j</module>
<module>logging-tools</module>
<module>mail</module>
<module>numberguess</module>
<module>payment-cdi-event</module>
<module>richfaces-validation</module>
<module>servlet-async</module>
<module>servlet-filterlistener</module>
<module>servlet-security</module>
<module>tasks</module>
<module>tasks-jsf</module>
<module>temperature-converter</module>
<module>tasks-rs</module>
<module>wicket-ear</module>
<module>wicket-war</module>
<module>xml-jaxp</module>
<module>xml-dom4j</module>
</modules>
</profile>
<profile>
<!-- All the quickstarts that require Postgres to be running -->
<id>requires-postgres</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>requires-postgres</name>
<value>!disabled</value>
</property>
</activation>
<modules>
<module>cmt</module>
<module>jts</module>
</modules>
</profile>
<profile>
<!-- All the quickstarts that require Postgres to be running -->
<id>complex-dependencies</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>complex-dependencies</name>
<value>!disabled</value>
</property>
</activation>
<modules>
<module>jax-rs-client</module>
<module>jts</module>
</modules>
</profile>
<profile>
<!-- All the quickstarts that require the "standalone-full" profile
to be in use -->
<id>requires-full</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>requires-full</name>
<value>!disabled</value>
</property>
</activation>
<modules>
<module>helloworld-mdb</module>
<module>jta-crash-rec</module>
</modules>
</profile>
<profile>
<!-- All the quickstarts that require the xts to be enabled -->
<id>requires-xts</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>requires-xts</name>
<value>!disabled</value>
</property>
</activation>
<modules>
<module>wsat-simple</module>
<module>wsba-coordinator-completion-simple</module>
<module>wsba-participant-completion-simple</module>
</modules>
</profile>
<profile>
<!-- All the quickstarts that don't actually use Maven. Don't
activate this profile! We just include this for completeness. -->
<id>non-maven</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>forge-from-scratch</module>
<module>h2-console</module>
<module>jts-distributed-crash-rec</module>
</modules>
</profile>
</profiles>
<scm>
<connection>scm:git://github.com/jbossas/quickstart.git</connection>
<developerConnection>scm:git:git@github.com:jbossas/quickstart.git</developerConnection>
<url>http://github.com/jbossas/quickstart</url>
</scm>
<build>
<plugins>
<!-- The JBoss AS plugin deploys your apps to a local JBoss AS
container -->
<!-- Disabling it here means that we don't try to deploy this
POM! -->
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
<version>7.1.1.Final</version>
<inherited>true</inherited>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>