Skip to content

Commit 3c5eba9

Browse files
committed
update for JDK11 after merge with main
1 parent 13079aa commit 3c5eba9

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG MAVEN_BUILDER=3-openjdk-17-slim
1+
# ARG MAVEN_BUILDER=3-openjdk-17-slim
22

33
#ARG SONARQUBE_VERSION=9.9.0-community
44
#ARG SONARQUBE_VERSION=24.12.0.100206-community
@@ -7,9 +7,8 @@ ARG MAVEN_BUILDER=3-openjdk-17-slim
77
#ARG SONARQUBE_VERSION=25.3.0.104237-community
88
#ARG SONARQUBE_VERSION=25.9.0.112764-community
99

10-
(??)
11-
(??)ARG MAVEN_BUILDER=3-openjdk-11-slim
12-
(??)ARG SONARQUBE_VERSION=9.9.8-community
10+
ARG MAVEN_BUILDER=3-openjdk-11-slim
11+
ARG SONARQUBE_VERSION=9.9.8-community
1312

1413
FROM maven:${MAVEN_BUILDER} AS builder
1514

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
<properties>
4242

43-
<java.version>17</java.version>
43+
<java.version>11</java.version>
4444
<maven.compiler.source>${java.version}</maven.compiler.source>
4545
<maven.compiler.target>${java.version}</maven.compiler.target>
4646
<!-- to prevent message: system modules path not set in conjunction with -source 11 -->
@@ -60,11 +60,11 @@
6060
<sonar.plugin.api.version>13.0.0.3026</sonar.plugin.api.version>
6161

6262
<!-- Version of `sonar-java-plugin` that `creedengo-java-plugin` depends on -->
63-
(??) <!-- max version that all is OK with JDK 11 -->
64-
(??) <sonarjava.version>7.30.0.34429</sonarjava.version>
65-
<!-- LAST version compatible with SonarQube 9.9.0 AND 25.9.0 -->
66-
<sonarjava.version>8.9.3.40165</sonarjava.version>
67-
<!-- LAST version compatible with SonarQube 25.9.0 but NOT with 9.9.0 -->
63+
<!-- max version that all is OK with JDK 11 -->
64+
<sonarjava.version>7.30.0.34429</sonarjava.version>
65+
<!-- LAST version compatible with SonarQube 9.9.0 AND 25.9.0 for JDK 17 -->
66+
<!-- <sonarjava.version>8.9.3.40165</sonarjava.version>-->
67+
<!-- LAST version compatible with SonarQube 25.9.0 but NOT with 9.9.0 for JDK 17 -->
6868
<!-- <sonarjava.version>8.18.0.40025</sonarjava.version>-->
6969

7070
<sonar-analyzer-commons.version>2.18.0.3393</sonar-analyzer-commons.version>
@@ -81,7 +81,7 @@
8181

8282
<!-- Version of `sonarqube` used by integration tests (you can override this value to perform matrix compatibility tests) -->
8383
<!-- <test-it.sonarqube.version>9.9.0.65466</test-it.sonarqube.version>-->
84-
<!-- <test-it.sonarqube.version>9.9.8.100196</test-it.sonarqube.version>-->
84+
<test-it.sonarqube.version>9.9.8.100196</test-it.sonarqube.version>
8585
<!-- <test-it.sonarqube.version>10.1.0.73245</test-it.sonarqube.version>-->
8686
<!-- <test-it.sonarqube.version>10.1.0.73491</test-it.sonarqube.version>-->
8787
<!-- <test-it.sonarqube.version>10.2.0.77647</test-it.sonarqube.version>-->
@@ -92,7 +92,7 @@
9292
<!-- <test-it.sonarqube.version>25.3.0.104237</test-it.sonarqube.version>-->
9393
<!-- <test-it.sonarqube.version>25.4.0.105899</test-it.sonarqube.version>-->
9494
<!-- <test-it.sonarqube.version>25.5.0.107428</test-it.sonarqube.version>-->
95-
<test-it.sonarqube.version>25.9.0.112764</test-it.sonarqube.version>
95+
<!-- <test-it.sonarqube.version>25.9.0.112764</test-it.sonarqube.version>-->
9696

9797
<!-- Version of `sonar-java-plugin` used by integration tests (you can override this value to perform matrix compatibility tests) -->
9898
<test-it.sonarjava.version>${sonarjava.version}</test-it.sonarjava.version>

0 commit comments

Comments
 (0)