Skip to content

Commit 086d9dc

Browse files
authored
Merge pull request #1368 from fabriciofx/1366
#1366: Upgrade minimal Java support to 17
2 parents cd5f63d + 8d0e6ea commit 086d9dc

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.github/workflows/mvn.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [windows-2022, ubuntu-24.04, macos-15]
20-
java: [11, 21]
20+
java: [17, 21]
2121
steps:
2222
- uses: actions/checkout@v4
2323
- uses: actions/setup-java@v4

pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,17 @@
192192
</dependencies>
193193
</dependencyManagement>
194194
<build>
195+
<plugins>
196+
<plugin>
197+
<groupId>org.apache.maven.plugins</groupId>
198+
<artifactId>maven-compiler-plugin</artifactId>
199+
<version>3.14.0</version>
200+
<configuration>
201+
<source>17</source>
202+
<target>17</target>
203+
</configuration>
204+
</plugin>
205+
</plugins>
195206
<pluginManagement>
196207
<plugins>
197208
<plugin>

qulice-checkstyle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<dependency>
4545
<groupId>com.puppycrawl.tools</groupId>
4646
<artifactId>checkstyle</artifactId>
47-
<version>10.26.1</version>
47+
<version>11.0.1</version>
4848
<exclusions>
4949
<exclusion>
5050
<groupId>net.sf.saxon</groupId>

0 commit comments

Comments
 (0)