Skip to content

Commit

Permalink
Issue checkstyle#389: update to checkstyle 9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
muhlba91 committed Nov 17, 2021
1 parent 24d037c commit f376b0f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ Official announcement of project transfer - https://groups.google.com/d/topic/so

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

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

Compatibility matrix from checkstyle team:

Checkstyle Plugin|Sonar min|Sonar max|Checkstyle|Jdk
-----------------|---------|---------|----------|---
9.1|8.9 |8.9+|9.1|1.8
9.0.1|8.9 |8.9+|9.0.1|1.8
8.45.1|7.9 |7.9+|8.45.1|1.8
8.42|7.9 |7.9+|8.42|1.8
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
</ciManagement>

<properties>
<checkstyle.version>9.0.1</checkstyle.version>
<checkstyle.version>9.1</checkstyle.version>
<sonar.version>8.9.3.48735</sonar.version>
<sonar-java.version>7.2.0.26923</sonar-java.version>
<maven.checkstyle.plugin.version>3.1.2</maven.checkstyle.plugin.version>
Expand Down Expand Up @@ -318,7 +318,7 @@
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.12</version>
<version>0.10.2</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -843,9 +843,9 @@
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.9.0.2155</version>
<version>3.9.1.2184</version>
</plugin>
</plugins>
</build>
Expand Down
8 changes: 5 additions & 3 deletions test-resources/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ version: "3"

services:
sonarqube:
image: sonarqube:8.9.3-community
# next line is for arm64 devices when testing since SQ does not officially release multi-arch images
#image: stevefan1999/sonarqube:9.0.1-community
#image: sonarqube:8.9.3-community
# alternatively, to test with 9.1, use the next line
#image: sonarqube:9.1-community
# next line is for arm64 devices (e.g. Mac M1) when testing since SQ does not officially release multi-arch images
image: stevefan1999/sonarqube:9.0.1-community
restart: unless-stopped
depends_on:
- db
Expand Down

0 comments on commit f376b0f

Please sign in to comment.