Skip to content

Commit 62a63a2

Browse files
committed
fixed build incompatibility with JDK 21
1 parent 757303a commit 62a63a2

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

jcp/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
<dependency>
132132
<groupId>org.apache.maven.shared</groupId>
133133
<artifactId>file-management</artifactId>
134-
<version>3.0.0</version>
134+
<version>3.1.0</version>
135135
<scope>provided</scope>
136136
<exclusions>
137137
<exclusion>
@@ -143,7 +143,7 @@
143143
<dependency>
144144
<groupId>commons-io</groupId>
145145
<artifactId>commons-io</artifactId>
146-
<version>2.11.0</version>
146+
<version>2.13.0</version>
147147
</dependency>
148148
<dependency>
149149
<groupId>org.apache.commons</groupId>
@@ -153,12 +153,12 @@
153153
<dependency>
154154
<groupId>commons-codec</groupId>
155155
<artifactId>commons-codec</artifactId>
156-
<version>1.15</version>
156+
<version>1.16.0</version>
157157
</dependency>
158158
<dependency>
159159
<groupId>org.projectlombok</groupId>
160160
<artifactId>lombok</artifactId>
161-
<version>1.18.26</version>
161+
<version>1.18.30</version>
162162
<scope>provided</scope>
163163
</dependency>
164164
<dependency>
@@ -257,7 +257,7 @@
257257
<dependency>
258258
<groupId>org.codehaus.groovy</groupId>
259259
<artifactId>groovy</artifactId>
260-
<version>2.5.1</version>
260+
<version>2.5.14</version>
261261
<scope>provided</scope>
262262
</dependency>
263263
</dependencies>

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
<timestamp>${maven.build.timestamp}</timestamp>
1717
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
1818
<min.maven.api>3.0</min.maven.api>
19-
<junit.version>5.8.2</junit.version>
19+
<junit.version>5.10.0</junit.version>
20+
<maven.compiler.release>8</maven.compiler.release>
2021
<maven.compiler.source>1.8</maven.compiler.source>
2122
<maven.compiler.target>1.8</maven.compiler.target>
2223
</properties>
@@ -135,7 +136,7 @@
135136
<plugin>
136137
<groupId>org.apache.maven.plugins</groupId>
137138
<artifactId>maven-compiler-plugin</artifactId>
138-
<version>3.10.1</version>
139+
<version>3.11.0</version>
139140
</plugin>
140141
<plugin>
141142
<groupId>org.codehaus.mojo</groupId>

0 commit comments

Comments
 (0)