forked from jboss-developer/jboss-eap-quickstarts
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
78 lines (73 loc) · 2.74 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
<?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">
<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.0.2-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>
<modules>
<module>bmt</module>
<module>cdi-injection</module>
<module>cmt</module>
<module>ejb-in-ear</module>
<module>ejb-in-war</module>
<module>ejb-remote</module>
<module>greeter</module>
<module>helloworld</module>
<module>helloworld-gwt</module>
<module>helloworld-html5</module>
<module>helloworld-jms</module>
<module>helloworld-jsf</module>
<module>helloworld-mdb</module>
<module>helloworld-osgi</module>
<module>helloworld-rs</module>
<module>helloworld-singleton</module>
<module>jts</module>
<module>kitchensink</module>
<module>kitchensink-ear</module>
<module>kitchensink-html5-mobile</module>
<module>kitchensink-jsp</module>
<module>log4j</module>
<module>numberguess</module>
<module>payment-cdi-event</module>
<module>servlet-async</module>
<module>servlet-filterlistener</module>
</modules>
<scm>
<connection>scm:git://github.com/jbossas/quickstart.git</connection>
<developerConnection>scm:git:[email protected]: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.0.CR1</version>
<inherited>true</inherited>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>