Skip to content

Commit bae3339

Browse files
committedMar 17, 2025··
build: Release 3.7.0
1 parent ccd710c commit bae3339

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed
 

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Do you want to use this analyzer in a project hosted on [SonarCloud](https://son
2323

2424
| ZPA version | SonarQube version (min/max) |
2525
|------------------------|-----------------------------|
26-
| 3.6.0 | 9.9 / 10.7 |
27-
| 3.7.0 (in development) | 9.9 / 25.2 |
26+
| 3.7.0 | 9.9 / 25.3 |
27+
| 3.8.0 (in development) | 9.9 / 25.3 |
2828

2929
## ZPA Toolkit
3030

@@ -69,6 +69,6 @@ Then run the tests:
6969

7070
./gradlew integrationTest
7171

72-
By default, the tests will be executed using SonarQube 9.9 LTA. You can change the SonarQube version using the property `sonar.runtimeVersion`, passing one of `LATEST_RELEASE[9.9]` (for SonarQube 9.9.x LTA), `LATEST_RELEASE[24.12]` (latest official release) or `a.b.c.d` for an exact release including build number:
72+
By default, the tests will be executed using SonarQube 9.9 LTA. You can change the SonarQube version using the property `sonar.runtimeVersion`, passing one of `LATEST_RELEASE[9.9]` (for SonarQube 9.9.x LTA), `LATEST_RELEASE[25.3]` (latest official release) or `a.b.c.d` for an exact release including build number:
7373

7474
./gradlew integrationTest -Dsonar.runtimeVersion=LATEST_RELEASE[9.9]

‎build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ allprojects {
3232
}
3333

3434
group = "com.felipebz.zpa"
35-
version = "3.7.0-SNAPSHOT"
35+
version = "3.7.0"
3636
}
3737

3838
subprojects {

‎gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Workaround for Dokka issue: https://github.com/Kotlin/dokka/issues/1405
22
org.gradle.jvmargs=-XX:MaxMetaspaceSize=1G
33
systemProp.sonar.gradle.skipCompile=true
4-
org.gradle.parallel=true
4+
#org.gradle.parallel=true
55
org.gradle.caching=true

‎plsql-custom-rules/build.gradle.kts

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ java {
2323
val minSonarQubeVersion = "9.9.0.65466"
2424
val minSonarQubeApiVersion = "9.14.0.375"
2525
val junitVersion = "5.12.0"
26+
val zpaVersion = "3.7.0"
2627

2728
dependencies {
2829
compileOnly("org.sonarsource.api.plugin:sonar-plugin-api:$minSonarQubeApiVersion")
29-
compileOnly("com.felipebz.zpa:sonar-zpa-plugin:3.7.0-SNAPSHOT")
30+
compileOnly("com.felipebz.zpa:sonar-zpa-plugin:$zpaVersion")
3031
testImplementation("org.sonarsource.sonarqube:sonar-plugin-api-impl:$minSonarQubeVersion")
31-
testImplementation("com.felipebz.zpa:zpa-checks-testkit:3.7.0-SNAPSHOT")
32+
testImplementation("com.felipebz.zpa:zpa-checks-testkit:$zpaVersion")
3233
testImplementation("org.junit.jupiter:junit-jupiter:$junitVersion")
3334
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
3435
}

‎plsql-custom-rules/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13-
<zpa.version>3.7.0-SNAPSHOT</zpa.version>
13+
<zpa.version>3.7.0</zpa.version>
1414
<sonarqube.api.min.version>9.14.0.375</sonarqube.api.min.version>
1515
<sonarqube.min.version>9.9.0.65466</sonarqube.min.version>
1616
</properties>

0 commit comments

Comments
 (0)
Please sign in to comment.