Skip to content

Commit

Permalink
Release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
felipebz committed Oct 17, 2021
1 parent 1c13abb commit 84671bf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ If you like to live on the bleeding edge, you can use the [latest development ve

| ZPA version | SonarQube version |
|-----------------|-------------------|
| 2.4.0 (current) | 6.7 LTS - 8.9 LTS |
| 3.0.0 (next) | 7.6 - 8.9 LTS |
| 2.4.0 | 6.7 LTS - 8.9 LTS |
| 3.0.0 (current) | 7.6 - latest |

## Contribute

Expand Down Expand Up @@ -67,6 +67,6 @@ Then run the tests:

./gradlew test -Pit

By default the tests will be executed using SonarQube 6.7.x LTS. You can change the SonarQube version using the property `sonar.runtimeVersion`, passing the specific version or one of `LATEST_RELEASE[6.7]` (for SonarQube 6.7.x LTS), `LATEST_RELEASE` (latest official release) or `DEV` (unstable version, in development):
By default the tests will be executed using SonarQube 7.6. You can change the SonarQube version using the property `sonar.runtimeVersion`, passing the specific version or one of `LATEST_RELEASE[6.7]` (for SonarQube 6.7.x LTS), `LATEST_RELEASE` (latest official release) or `DEV` (unstable version, in development):

./gradlew test -Pit -Dsonar.runtimeVersion=7.7
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ allprojects {
}

group = "com.felipebz.zpa"
version = "3.0.0-SNAPSHOT"
version = "3.0.0"
}

subprojects {
Expand Down
4 changes: 2 additions & 2 deletions plsql-custom-rules/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ val minSonarQubeVersion = "7.6"

dependencies {
compileOnly("org.sonarsource.sonarqube:sonar-plugin-api:$minSonarQubeVersion")
compileOnly("com.felipebz.zpa:sonar-zpa-plugin:3.0.0-SNAPSHOT")
testImplementation("com.felipebz.zpa:zpa-checks-testkit:3.0.0-SNAPSHOT")
compileOnly("com.felipebz.zpa:sonar-zpa-plugin:3.0.0")
testImplementation("com.felipebz.zpa:zpa-checks-testkit:3.0.0")
testImplementation("org.junit.jupiter:junit-jupiter:5.8.0")
}

Expand Down
2 changes: 1 addition & 1 deletion plsql-custom-rules/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<zpa.version>3.0.0-SNAPSHOT</zpa.version>
<zpa.version>3.0.0</zpa.version>
</properties>

<dependencies>
Expand Down

0 comments on commit 84671bf

Please sign in to comment.