Skip to content

Commit

Permalink
Release 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
felipebz committed Jan 5, 2022
1 parent 1686c0e commit d3dab76
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ steps:
path: $(Pipeline.Workspace)/.cache

- task: DownloadSecureFile@1
condition: and(succeeded(), eq(variables.isMain, 'true'))
name: gpgKey
inputs:
secureFile: 'secring.gpg'
Expand Down Expand Up @@ -77,7 +76,7 @@ steps:

- task: Gradle@2
displayName: Publish artifacts
condition: and(succeeded(), eq(variables.isMain, 'true'), eq(variables['System.JobName'], 'linux'))
condition: and(succeeded(), eq(variables['System.JobName'], 'linux'))
inputs:
tasks: 'publish'
options: '--build-cache -Psigning.secretKeyRingFile=$(gpgKey.secureFilePath) -Psigning.keyId=$(GPG_KEY_ID) -Psigning.password=$(GPG_KEY_PASSWORD)'
Expand Down
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.1.1-SNAPSHOT"
version = "3.1.1"
}

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

dependencies {
compileOnly("org.sonarsource.sonarqube:sonar-plugin-api:$minSonarQubeVersion")
compileOnly("com.felipebz.zpa:sonar-zpa-plugin:3.1.1-SNAPSHOT")
compileOnly("com.felipebz.zpa:sonar-zpa-plugin:3.1.1")
testImplementation("com.felipebz.zpa:zpa-checks-testkit:3.1.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.1.1-SNAPSHOT</zpa.version>
<zpa.version>3.1.1</zpa.version>
</properties>

<dependencies>
Expand Down

0 comments on commit d3dab76

Please sign in to comment.