Skip to content

Commit 7459673

Browse files
committed
Update for Java 17
1 parent 261a0ce commit 7459673

File tree

2 files changed

+43
-43
lines changed

2 files changed

+43
-43
lines changed

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
# test against latest update of each major Java version, as well as specific updates of LTS versions:
2121
os: [ ubuntu-latest, windows-latest ]
22-
java: [ 8, 11 ]
22+
java: [ 8, 11, 17 ]
2323

2424
steps:
2525
- name: Checkout ci.common

pom.xml

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,69 @@
11
<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">
2-
<modelVersion>4.0.0</modelVersion>
2+
<modelVersion>4.0.0</modelVersion>
33

4-
<parent>
5-
<groupId>net.wasdev.maven.parent</groupId>
6-
<artifactId>parent</artifactId>
7-
<version>1.4</version>
8-
<relativePath />
9-
</parent>
4+
<parent>
5+
<groupId>net.wasdev.maven.parent</groupId>
6+
<artifactId>parent</artifactId>
7+
<version>1.4</version>
8+
<relativePath />
9+
</parent>
1010

11-
<groupId>io.openliberty.tools</groupId>
12-
<artifactId>ci.common</artifactId>
13-
<version>1.8.23-SNAPSHOT</version>
14-
<packaging>jar</packaging>
11+
<groupId>io.openliberty.tools</groupId>
12+
<artifactId>ci.common</artifactId>
13+
<version>1.8.23-SNAPSHOT</version>
14+
<packaging>jar</packaging>
1515

16-
<name>ci.common</name>
16+
<name>ci.common</name>
1717

18-
<licenses>
19-
<license>
20-
<name>The Apache Software License, Version 2.0</name>
21-
<url>https://raw.github.com/openliberty/ci.common/main/LICENSE</url>
22-
<distribution>repo</distribution>
23-
</license>
24-
</licenses>
18+
<licenses>
19+
<license>
20+
<name>The Apache Software License, Version 2.0</name>
21+
<url>https://raw.github.com/openliberty/ci.common/main/LICENSE</url>
22+
<distribution>repo</distribution>
23+
</license>
24+
</licenses>
2525

26-
<scm>
27-
<connection>scm:git:[email protected]:openliberty/ci.maven.git</connection>
28-
<developerConnection>scm:git:[email protected]:openliberty/ci.common.git</developerConnection>
29-
<url>[email protected]:openliberty/ci.common.git</url>
30-
<tag>HEAD</tag>
31-
</scm>
26+
<scm>
27+
<connection>scm:git:[email protected]:openliberty/ci.maven.git</connection>
28+
<developerConnection>scm:git:[email protected]:openliberty/ci.common.git</developerConnection>
29+
<url>[email protected]:openliberty/ci.common.git</url>
30+
<tag>HEAD</tag>
31+
</scm>
3232

33-
<properties>
34-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
36-
<maven.compiler.source>1.7</maven.compiler.source>
37-
<maven.compiler.target>1.7</maven.compiler.target>
38-
</properties>
33+
<properties>
34+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
36+
<maven.compiler.source>1.7</maven.compiler.source>
37+
<maven.compiler.target>1.7</maven.compiler.target>
38+
</properties>
3939

40-
<dependencies>
41-
<dependency>
42-
<groupId>junit</groupId>
43-
<artifactId>junit</artifactId>
44-
<version>4.13.1</version>
45-
<scope>test</scope>
46-
</dependency>
40+
<dependencies>
41+
<dependency>
42+
<groupId>junit</groupId>
43+
<artifactId>junit</artifactId>
44+
<version>4.13.2</version>
45+
<scope>test</scope>
46+
</dependency>
4747
<dependency>
4848
<groupId>commons-io</groupId>
4949
<artifactId>commons-io</artifactId>
50-
<version>2.8.0</version>
50+
<version>2.11.0</version>
5151
</dependency>
5252
<dependency>
5353
<groupId>javax.xml.bind</groupId>
5454
<artifactId>jaxb-api</artifactId>
55-
<version>2.2.12</version>
55+
<version>2.3.1</version>
5656
<scope>runtime</scope>
5757
</dependency>
5858
<dependency>
5959
<groupId>io.openliberty.tools</groupId>
6060
<artifactId>liberty-ant-tasks</artifactId>
61-
<version>1.9.10</version>
61+
<version>1.9.11</version>
6262
</dependency>
6363
<dependency>
6464
<groupId>org.apache.maven</groupId>
6565
<artifactId>maven-artifact</artifactId>
6666
<version>3.6.3</version>
6767
</dependency>
68-
</dependencies>
68+
</dependencies>
6969
</project>

0 commit comments

Comments
 (0)