-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
194 lines (186 loc) · 6.81 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
* JBoss, Home of Professional Open Source Copyright 2011 Red Hat Inc. and/or
* its affiliates and other contributors as indicated by the @authors tag. All
* rights reserved. See the copyright.txt in the distribution for a full listing
* of individual contributors.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, v. 2.1.
*
* This program is distributed in the hope that it will be useful, but WITHOUT A
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License,
* v.2.1 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
-->
<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>
<name>JBoss IRC Bot: Parent</name>
<groupId>org.jboss.ircbot</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>1.0.0.Alpha1-SNAPSHOT</version>
<properties>
<fossnova.io.version>1.0.0.Beta1-SNAPSHOT</fossnova.io.version>
<fossnova.fue.version>1.0.0.Beta2-SNAPSHOT</fossnova.fue.version>
<fossnova.json.version>1.0.1-SNAPSHOT</fossnova.json.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.checkstyle.plugin.version>2.9.1</maven.checkstyle.plugin.version>
<maven.compiler.plugin.version>2.3.2</maven.compiler.plugin.version>
<maven.javadoc.plugin.version>2.8</maven.javadoc.plugin.version>
<maven.surefire.plugin.version>2.11</maven.surefire.plugin.version>
<jboss.logging.version>3.1.2.GA</jboss.logging.version>
<jboss.modules.version>1.1.3.GA</jboss.modules.version>
<jboss.msc.version>1.1.7.Final</jboss.msc.version>
<x2jb.version>2.0</x2jb.version>
</properties>
<modules>
<module>modules/api</module>
<module>modules/impl</module>
<module>modules/plugins</module>
<module>modules/distro</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.fossnova</groupId>
<artifactId>fossnova-io</artifactId>
<version>${fossnova.io.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.fossnova</groupId>
<artifactId>fossnova-json-impl</artifactId>
<version>${fossnova.json.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.fossnova</groupId>
<artifactId>fossnova-fue-impl</artifactId>
<version>${fossnova.fue.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.ircbot</groupId>
<artifactId>ircbot-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.ircbot</groupId>
<artifactId>ircbot-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.ircbot</groupId>
<artifactId>ircbot-plugins</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
<version>${jboss.logging.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.modules</groupId>
<artifactId>jboss-modules</artifactId>
<version>${jboss.modules.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.msc</groupId>
<artifactId>jboss-msc</artifactId>
<version>${jboss.msc.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.x2jb</groupId>
<artifactId>x2jb-annotation-provider</artifactId>
<version>${x2jb.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.x2jb</groupId>
<artifactId>x2jb-core</artifactId>
<version>${x2jb.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.x2jb</groupId>
<artifactId>x2jb-default-handlers</artifactId>
<version>${x2jb.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${maven.checkstyle.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<executions>
<execution>
<id>check-style</id>
<phase>compile</phase>
<goals>
<goal>checkstyle</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<source>1.5</source>
<target>1.5</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<optimize>true</optimize>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>pertest</forkMode>
<forkedProcessTimeoutInSeconds>60</forkedProcessTimeoutInSeconds>
</configuration>
</plugin>
</plugins>
</build>
</project>