Skip to content

Commit 25155db

Browse files
authored
Merge pull request #35 from jGauravGupta/QA-188
QA-188 Upgrade Java EE 8 Samples dependencies
2 parents 5543b2c + c208ea1 commit 25155db

File tree

1 file changed

+22
-12
lines changed

1 file changed

+22
-12
lines changed

pom.xml

Lines changed: 22 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -167,13 +167,13 @@
167167
<dependency>
168168
<groupId>org.hamcrest</groupId>
169169
<artifactId>hamcrest-core</artifactId>
170-
<version>1.3</version>
170+
<version>2.1</version>
171171
<scope>test</scope>
172172
</dependency>
173173
<dependency>
174174
<groupId>org.hamcrest</groupId>
175175
<artifactId>hamcrest-library</artifactId>
176-
<version>1.3</version>
176+
<version>2.1</version>
177177
<scope>test</scope>
178178
</dependency>
179179
<dependency>
@@ -212,7 +212,7 @@
212212
<dependency>
213213
<groupId>net.sourceforge.htmlunit</groupId>
214214
<artifactId>htmlunit</artifactId>
215-
<version>2.28</version>
215+
<version>2.33</version>
216216
<scope>test</scope>
217217
</dependency>
218218
<dependency>
@@ -224,7 +224,7 @@
224224
<dependency>
225225
<groupId>org.json</groupId>
226226
<artifactId>json</artifactId>
227-
<version>20170516</version>
227+
<version>20180813</version>
228228
<scope>test</scope>
229229
</dependency>
230230
<dependency>
@@ -233,6 +233,16 @@
233233
<version>1.7.0</version>
234234
<scope>test</scope>
235235
</dependency>
236+
<dependency>
237+
<groupId>jakarta.xml.bind</groupId>
238+
<artifactId>jakarta.xml.bind-api</artifactId>
239+
<version>2.3.2</version>
240+
</dependency>
241+
<dependency>
242+
<groupId>org.glassfish.jaxb</groupId>
243+
<artifactId>jaxb-runtime</artifactId>
244+
<version>2.3.2</version>
245+
</dependency>
236246
</dependencies>
237247

238248

@@ -250,7 +260,7 @@
250260
<plugin>
251261
<groupId>org.apache.maven.plugins</groupId>
252262
<artifactId>maven-compiler-plugin</artifactId>
253-
<version>3.7.0</version>
263+
<version>3.8.0</version>
254264
<configuration>
255265
<source>${java.min.version}</source>
256266
<target>${java.min.version}</target>
@@ -259,7 +269,7 @@
259269
<plugin>
260270
<groupId>org.apache.maven.plugins</groupId>
261271
<artifactId>maven-surefire-report-plugin</artifactId>
262-
<version>2.20.1</version>
272+
<version>3.0.0-M3</version>
263273
<configuration>
264274
<aggregate>true</aggregate>
265275
<linkXRef>true</linkXRef>
@@ -268,19 +278,19 @@
268278
<plugin>
269279
<groupId>org.apache.maven.plugins</groupId>
270280
<artifactId>maven-surefire-plugin</artifactId>
271-
<version>2.20.1</version>
281+
<version>3.0.0-M3</version>
272282
<dependencies>
273283
<dependency>
274284
<groupId>javax.annotation</groupId>
275285
<artifactId>javax.annotation-api</artifactId>
276-
<version>1.3.1</version>
286+
<version>1.3.2</version>
277287
</dependency>
278288
</dependencies>
279289
</plugin>
280290
<plugin>
281291
<groupId>org.apache.maven.plugins</groupId>
282292
<artifactId>maven-war-plugin</artifactId>
283-
<version>3.2.0</version>
293+
<version>3.2.2</version>
284294
<configuration>
285295
<attachClasses>true</attachClasses>
286296
<failOnMissingWebXml>false</failOnMissingWebXml>
@@ -289,7 +299,7 @@
289299
<plugin>
290300
<groupId>org.apache.maven.plugins</groupId>
291301
<artifactId>maven-enforcer-plugin</artifactId>
292-
<version>3.0.0-M1</version>
302+
<version>3.0.0-M2</version>
293303
<configuration>
294304
<rules>
295305
<requireMavenVersion>
@@ -317,12 +327,12 @@
317327
<plugin>
318328
<groupId>org.apache.maven.plugins</groupId>
319329
<artifactId>maven-dependency-plugin</artifactId>
320-
<version>3.0.2</version>
330+
<version>3.1.1</version>
321331
</plugin>
322332
<plugin>
323333
<groupId>org.apache.maven.plugins</groupId>
324334
<artifactId>maven-resources-plugin</artifactId>
325-
<version>3.0.2</version>
335+
<version>3.1.0</version>
326336
</plugin>
327337
</plugins>
328338
</build>

0 commit comments

Comments
 (0)