This repository has been archived by the owner on Nov 10, 2017. It is now read-only.
forked from mareknovotny/jboss-seam
-
Notifications
You must be signed in to change notification settings - Fork 50
/
pom.xml
134 lines (122 loc) · 5.5 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
<?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>
<groupId>org.jboss.seam.examples</groupId>
<artifactId>booking</artifactId>
<version>2.3.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Booking Example (EE6)</name>
<properties>
<example.name>booking</example.name>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.6</maven.compiler.target>
<maven.compiler.source>1.6</maven.compiler.source>
<!-- To use jacoco, set jacoco.agent system property to something like
-javaagent:/path/to/jacocoagent.jar=append=true,destfile=/path/to/output/jacoco.exec -->
<jacoco.agent />
<!-- To use custom Maven settings with ShrinkWrap Resolver, uncomment
and customize the following property. -->
<!--<maven.user.settings>/path/to/custom/settings.xml</maven.user.settings>-->
<version.commons.logging>1.1.1</version.commons.logging>
<!-- Plugin versions -->
<version.dependency.plugin>2.5.1</version.dependency.plugin>
<version.surefire.plugin>2.10</version.surefire.plugin>
<version.resources.plugin>2.6</version.resources.plugin>
<version.compiler.plugin>2.3.1</version.compiler.plugin>
<version.ear.plugin>2.6</version.ear.plugin>
<version.war.plugin>2.1.1</version.war.plugin>
<version.ejb.plugin>2.3</version.ejb.plugin>
<version.jboss.maven.plugin>7.4.Final</version.jboss.maven.plugin>
</properties>
<modules>
<module>booking-ear</module>
<module>booking-ejb</module>
<module>booking-web</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- Modules -->
<dependency>
<groupId>org.jboss.seam.examples.booking</groupId>
<artifactId>booking-ejb</artifactId>
<version>${project.version}</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>org.jboss.seam.examples.booking</groupId>
<artifactId>booking-web</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.jboss.seam.examples.booking</groupId>
<artifactId>booking-ear</artifactId>
<version>${project.version}</version>
<type>ear</type>
</dependency>
<!-- BOMs -->
<dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>bom</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Common provided dependencies -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>${version.commons.logging}</version>
<scope>provided</scope>
</dependency>
<!-- TestNG is not necessary -->
<dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
</exclusion>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<!-- Manage plugin versions for build stability -->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${version.surefire.plugin}</version>
<configuration>
<systemPropertyVariables>
<org.apache.maven.user-settings>${maven.user.settings}</org.apache.maven.user-settings>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>${version.dependency.plugin}</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>${version.resources.plugin}</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.compiler.plugin}</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>