Skip to content

Commit df85f2c

Browse files
committed
Issue #389: update to checkstyle 9.1
1 parent 24d037c commit df85f2c

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@ Official announcement of project transfer - https://groups.google.com/d/topic/so
1515

1616
This plugin provides coding rules from [Checkstyle](http://checkstyle.sourceforge.net/).
1717

18-
Compatibility matrix from Sonar team: https://docs.sonarqube.org/display/PLUG/Plugin+Version+Matrix
18+
Compatibility matrix from Sonar team: https://docs.sonarqube.org/latest/instance-administration/plugin-version-matrix/
1919

2020
Compatibility matrix from checkstyle team:
2121

2222
Checkstyle Plugin|Sonar min|Sonar max|Checkstyle|Jdk
2323
-----------------|---------|---------|----------|---
24+
9.1|8.9 |8.9+|9.1|1.8
2425
9.0.1|8.9 |8.9+|9.0.1|1.8
2526
8.45.1|7.9 |7.9+|8.45.1|1.8
2627
8.42|7.9 |7.9+|8.42|1.8

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
</ciManagement>
9494

9595
<properties>
96-
<checkstyle.version>9.0.1</checkstyle.version>
96+
<checkstyle.version>9.1</checkstyle.version>
9797
<sonar.version>8.9.3.48735</sonar.version>
9898
<sonar-java.version>7.2.0.26923</sonar-java.version>
9999
<maven.checkstyle.plugin.version>3.1.2</maven.checkstyle.plugin.version>
@@ -318,7 +318,7 @@
318318
<dependency>
319319
<groupId>org.reflections</groupId>
320320
<artifactId>reflections</artifactId>
321-
<version>0.9.12</version>
321+
<version>0.10.2</version>
322322
</dependency>
323323
</dependencies>
324324

@@ -843,9 +843,9 @@
843843
</executions>
844844
</plugin>
845845
<plugin>
846-
<groupId>org.codehaus.mojo</groupId>
846+
<groupId>org.sonarsource.scanner.maven</groupId>
847847
<artifactId>sonar-maven-plugin</artifactId>
848-
<version>3.9.0.2155</version>
848+
<version>3.9.1.2184</version>
849849
</plugin>
850850
</plugins>
851851
</build>

test-resources/docker-compose.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ version: "3"
44
services:
55
sonarqube:
66
image: sonarqube:8.9.3-community
7-
# next line is for arm64 devices when testing since SQ does not officially release multi-arch images
7+
# alternatively, to test with 9.1, use the next line
8+
#image: sonarqube:9.1-community
9+
# next line is for arm64 devices (e.g. Mac M1) when testing since SQ does not officially release multi-arch images
810
#image: stevefan1999/sonarqube:9.0.1-community
911
restart: unless-stopped
1012
depends_on:

0 commit comments

Comments
 (0)