Skip to content

Commit 446a893

Browse files
authored
Merge pull request #445 from jGauravGupta/QA-187
QA-187 Upgrade Java EE 7 Samples dependencies
2 parents 29c1a53 + ba7f1ef commit 446a893

File tree

1 file changed

+29
-19
lines changed

1 file changed

+29
-19
lines changed

pom.xml

Lines changed: 29 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<name>Java EE 7 Sample: javaee7-samples</name>
1111

1212
<properties>
13-
<arquillian.version>1.1.14.Final</arquillian.version>
13+
<arquillian.version>1.4.1.Final</arquillian.version>
1414
<java.min.version>1.7</java.min.version>
1515
<maven.min.version>3.0.0</maven.min.version>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>com.h2database</groupId>
127127
<artifactId>h2</artifactId>
128-
<version>1.4.195</version>
128+
<version>1.4.197</version>
129129
</dependency>
130130
<dependency>
131131
<groupId>fish.payara.arquillian</groupId>
@@ -160,13 +160,13 @@
160160
<dependency>
161161
<groupId>org.hamcrest</groupId>
162162
<artifactId>hamcrest-core</artifactId>
163-
<version>1.3</version>
163+
<version>2.1</version>
164164
<scope>test</scope>
165165
</dependency>
166166
<dependency>
167167
<groupId>org.hamcrest</groupId>
168168
<artifactId>hamcrest-library</artifactId>
169-
<version>1.3</version>
169+
<version>2.1</version>
170170
<scope>test</scope>
171171
</dependency>
172172
<!-- Alternative to Hamcrest matchers. Provides fluent, type-aware API -->
@@ -200,13 +200,13 @@
200200
<dependency>
201201
<groupId>xmlunit</groupId>
202202
<artifactId>xmlunit</artifactId>
203-
<version>1.5</version>
203+
<version>1.6</version>
204204
<scope>test</scope>
205205
</dependency>
206206
<dependency>
207207
<groupId>org.skyscreamer</groupId>
208208
<artifactId>jsonassert</artifactId>
209-
<version>1.2.1</version>
209+
<version>1.5.0</version>
210210
<scope>test</scope>
211211
</dependency>
212212
<!-- TODO: remove this dependency, only htmlunit should be needed -->
@@ -219,32 +219,42 @@
219219
<dependency>
220220
<groupId>net.sourceforge.htmlunit</groupId>
221221
<artifactId>htmlunit</artifactId>
222-
<version>2.31</version>
222+
<version>2.33</version>
223223
<scope>test</scope>
224224
</dependency>
225225
<dependency>
226226
<groupId>rhino</groupId>
227227
<artifactId>js</artifactId>
228-
<version>1.7R1</version>
228+
<version>1.7R2</version>
229229
<scope>test</scope>
230230
</dependency>
231231
<dependency>
232232
<groupId>org.json</groupId>
233233
<artifactId>json</artifactId>
234-
<version>20131018</version>
234+
<version>20180813</version>
235235
<scope>test</scope>
236236
</dependency>
237237
<dependency>
238238
<groupId>com.jayway.awaitility</groupId>
239239
<artifactId>awaitility</artifactId>
240-
<version>1.6.0</version>
240+
<version>1.7.0</version>
241+
<scope>test</scope>
242+
</dependency>
243+
<dependency>
244+
<groupId>org.omnifaces</groupId>
245+
<artifactId>omniutils</artifactId>
246+
<version>0.11</version>
241247
<scope>test</scope>
242248
</dependency>
243249
<dependency>
244-
<groupId>org.omnifaces</groupId>
245-
<artifactId>omniutils</artifactId>
246-
<version>0.10</version>
247-
<scope>test</scope>
250+
<groupId>jakarta.xml.bind</groupId>
251+
<artifactId>jakarta.xml.bind-api</artifactId>
252+
<version>2.3.2</version>
253+
</dependency>
254+
<dependency>
255+
<groupId>org.glassfish.jaxb</groupId>
256+
<artifactId>jaxb-runtime</artifactId>
257+
<version>2.3.2</version>
248258
</dependency>
249259
</dependencies>
250260

@@ -263,7 +273,7 @@
263273
<plugin>
264274
<groupId>org.apache.maven.plugins</groupId>
265275
<artifactId>maven-compiler-plugin</artifactId>
266-
<version>3.6.1</version>
276+
<version>3.8.0</version>
267277
<configuration>
268278
<source>${java.min.version}</source>
269279
<target>${java.min.version}</target>
@@ -272,7 +282,7 @@
272282
<plugin>
273283
<groupId>org.apache.maven.plugins</groupId>
274284
<artifactId>maven-surefire-report-plugin</artifactId>
275-
<version>2.19.1</version>
285+
<version>3.0.0-M3</version>
276286
<configuration>
277287
<aggregate>true</aggregate>
278288
<linkXRef>true</linkXRef>
@@ -281,7 +291,7 @@
281291
<plugin>
282292
<groupId>org.apache.maven.plugins</groupId>
283293
<artifactId>maven-war-plugin</artifactId>
284-
<version>3.0.0</version>
294+
<version>3.2.2</version>
285295
<configuration>
286296
<attachClasses>true</attachClasses>
287297
<failOnMissingWebXml>false</failOnMissingWebXml>
@@ -322,12 +332,12 @@
322332
<plugin>
323333
<groupId>org.apache.maven.plugins</groupId>
324334
<artifactId>maven-enforcer-plugin</artifactId>
325-
<version>1.3.1</version>
335+
<version>3.0.0-M2</version>
326336
</plugin>
327337
<plugin>
328338
<groupId>org.apache.maven.plugins</groupId>
329339
<artifactId>maven-surefire-plugin</artifactId>
330-
<version>2.19.1</version>
340+
<version>3.0.0-M3</version>
331341
</plugin>
332342
</plugins>
333343
</pluginManagement>

0 commit comments

Comments
 (0)