forked from aerogear/aerogear-unifiedpush-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
383 lines (351 loc) · 17.8 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<?xml version="1.0" encoding="UTF-8"?>
<!--
JBoss, Home of Professional Open Source
Copyright Red Hat, Inc., and 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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.aerogear</groupId>
<artifactId>aerogear-parent</artifactId>
<!-- NOTE: if updated for version of UPS dependencies, please update the 'aerogear.bom.version' as well -->
<version>1.1.7</version>
</parent>
<groupId>org.jboss.aerogear.unifiedpush</groupId>
<artifactId>unifiedpush-parent</artifactId>
<version>2.1.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>AeroGear UnifiedPush Server</name>
<url>http://aerogear.org/push</url>
<scm>
<connection>scm:git:git://github.com/aerogear/aerogear-unifiedpush-server.git</connection>
<developerConnection>scm:git:[email protected]:aerogear/aerogear-unifiedpush-server.git</developerConnection>
<url>https://github.com/aerogear/aerogear-unifiedpush-server</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>jira</system>
<url>https://issues.jboss.org/browse/AGPUSH</url>
</issueManagement>
<ciManagement>
<system>travis-ci</system>
<url>https://travis-ci.org/aerogear/aerogear-unifiedpush-server</url>
</ciManagement>
<modules>
<module>common</module>
<module>model</module>
<module>migrator</module>
<module>push-sender</module>
<module>service</module>
<module>jaxrs</module>
<module>dependencies</module>
<module>servers</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.aerogear</groupId>
<artifactId>aerogear-crypto</artifactId>
<version>${aerogear.crypto.version}</version>
</dependency>
<!-- We need to redefine few testing dependencies until JDF updates -with-tools BOM -->
<!-- https://issues.jboss.org/browse/JDF-417 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- JBoss distributes a complete set of Java EE 6 APIs including a Bill of Materials (BOM). A BOM specifies the versions
of a "stack" (or a collection) of artifacts. We use this here so that we always get the correct versions of artifacts.
Here we use
the jboss-javaee-6.0 stack (you can read this as the JBoss stack of the Java EE 6 APIs) -->
<dependency>
<groupId>org.jboss.bom</groupId>
<artifactId>jboss-javaee-6.0-with-hibernate</artifactId>
<version>${jboss-javaee-6.0.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>4.2.15.Final</version>
</dependency>
<!-- AeroGear Dependencies BOM Imports -->
<dependency>
<groupId>org.jboss.aerogear</groupId>
<artifactId>aerogear-unifiedpush-bom</artifactId>
<version>${aerogear.bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- using latest of OpenEJB -->
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>openejb-core-hibernate</artifactId>
<version>4.7.0</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slfj4.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slfj4.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<!-- we really do not need javadocs for the server, there are no Java APIs exposed -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>${wildfly-maven-plugin.version}</version>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-remote-resources-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>process</goal>
</goals>
<configuration>
<resourceBundles>
<resourceBundle>org.aerogear:aerogear-jar-resource-bundle:1.0.0</resourceBundle>
</resourceBundles>
<properties>
<addLicense>true</addLicense>
</properties>
<excludeScope>provided</excludeScope>
<excludeGroupIds>org.aerogear.unifiedpush,org.jboss.aerogear.unifiedpush</excludeGroupIds>
<excludeArtifactIds>servlet-api,jstl</excludeArtifactIds>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.3.0.603</version>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!-- Override the actual checkstyle version to support Java 1.8 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${version.checkstyle.plugin}</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>6.18</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Define the version of JBoss' Java EE 6 APIs we want to import. Any dependencies from org.jboss.spec will have their
version defined by this BOM -->
<jboss-javaee-6.0.version>1.0.7.Final</jboss-javaee-6.0.version>
<!--
Options to override the compiler arguments directly on the compiler arument line to separate between what
the IDE understands as the source level and what the Maven compiler actually use.
-->
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<wildfly-maven-plugin.version>1.2.0.Final</wildfly-maven-plugin.version>
<aerogear.bom.version>1.1.7</aerogear.bom.version>
<admin-ui.version>2.0.1</admin-ui.version>
<!-- Override versions of AeroGear BOMs-->
<junit.version>4.11</junit.version>
<slfj4.version>1.7.21</slfj4.version>
<!-- Code coverage -->
<org.jacoco.ant.version>0.7.9</org.jacoco.ant.version>
<org.jacoco.agent.version>0.7.9</org.jacoco.agent.version>
<org.jacoco.jacoco-maven-plugin.version>0.7.9</org.jacoco.jacoco-maven-plugin.version>
<ant.contrib.version>20020829</ant.contrib.version>
<aerogear.crypto.version>0.1.5</aerogear.crypto.version>
<prometheus.simpleclient.version>0.3.0</prometheus.simpleclient.version>
<ups.ddl_value>update</ups.ddl_value>
</properties>
<profiles>
<profile>
<id>test</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencyManagement>
<dependencies>
<!-- AeroGear Test Dependencies BOM Imports -->
<dependency>
<groupId>org.jboss.aerogear</groupId>
<artifactId>aerogear-test-bom</artifactId>
<version>${aerogear.bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</profile>
<!--
Builds the distribution.
Usage:
- mvn clean install -Pdist,test
Preparing/Performing release, include as well:
- mvn release:GOAL -Pdist,test
-->
<profile>
<id>dist</id>
<modules>
<module>dist</module>
</modules>
<properties>
<ups.ddl_value>update</ups.ddl_value>
</properties>
</profile>
<profile>
<id>code-coverage</id>
<properties>
<unifiedpush-parent.build>${user.dir}/target</unifiedpush-parent.build>
<jacoco.prep>${unifiedpush-parent.build}/jacoco/prep</jacoco.prep>
<jacoco.prep.classes>${jacoco.prep}/classes</jacoco.prep.classes>
<jacoco.prep.sources>${jacoco.prep}/sources</jacoco.prep.sources>
<jacoco.report.file>${jacoco.prep}/jacoco.exec</jacoco.report.file>
<jacoco.report.output>${unifiedpush-parent.build}/jacoco/report</jacoco.report.output>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${org.jacoco.jacoco-maven-plugin.version}</version>
<configuration>
<destFile>${jacoco.report.file}</destFile>
<append>true</append>
</configuration>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<dependencies>
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>org.jacoco.ant</artifactId>
<version>${org.jacoco.ant.version}</version>
</dependency>
<dependency>
<groupId>ant-contrib</groupId>
<artifactId>ant-contrib</artifactId>
<version>${ant.contrib.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>jacoco-report</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<taskdef name="jacoco-report" classname="org.jacoco.ant.ReportTask" classpathref="maven.plugin.classpath" />
<taskdef classpathref="maven.runtime.classpath" resource="net/sf/antcontrib/antcontrib.properties" />
<available file="${project.build.sourceDirectory}" type="dir" property="source.dir.exists" />
<available file="${jacoco.report.file}" property="exec.file.exists" />
<if>
<equals arg1="${source.dir.exists}" arg2="true" />
<then>
<copy todir="${jacoco.prep.sources}">
<fileset dir="${project.build.sourceDirectory}" />
</copy>
<copy todir="${jacoco.prep.classes}">
<fileset dir="${project.build.directory}/classes" />
</copy>
<if>
<equals arg1="${exec.file.exists}" arg2="true" />
<then>
<trycatch reference="report_exception">
<try>
<jacoco-report>
<executiondata>
<file file="${jacoco.report.file}" />
</executiondata>
<structure name="AeroGear UnifiedPush Server Unit Tests">
<classfiles>
<fileset dir="${jacoco.prep.classes}" />
</classfiles>
<sourcefiles encoding="${project.build.sourceEncoding}">
<fileset dir="${jacoco.prep.sources}" />
</sourcefiles>
</structure>
<html destdir="${jacoco.report.output}" />
</jacoco-report>
</try>
<catch>
<property name="exception" refid="report_exception" />
<property name="message" value="Error while generating jacoco report: ${exception}" />
<echo message="${message}" />
</catch>
</trycatch>
</then>
<else>
<echo message=".exec file is missing! Expected at: ${jacoco.report.file}!" />
</else>
</if>
</then>
<else>
<echo message="Source directory ${project.build.sourceDirectory} doesn't exist!" />
</else>
</if>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>