Skip to content

Commit

Permalink
Release 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Chessray committed Aug 31, 2024
1 parent 7295d89 commit 50ecf85
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions annotations/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ publishing {
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl

credentials {
username = System.getenv("OSSRH_USERNAME")
password = System.getenv("OSSRH_PASSWORD")
username = project.findProperty("ossrhUsername") ?: System.getenv("OSSRH_USERNAME")
password = project.findProperty("ossrhPassword") ?: System.getenv("OSSRH_PASSWORD")
}
}
}
Expand All @@ -68,4 +68,4 @@ javadoc {
options.links = [
"https://docs.spring.io/spring/docs/5.0.0.RELEASE/javadoc-api/"
]
}
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ subprojects {
apply plugin: "jacoco"

group = 'org.mapstruct.extensions.spring'
version = '1.1.2-SNAPSHOT'
version = '1.1.2'

java {
toolchain {
Expand Down
6 changes: 3 additions & 3 deletions extensions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ publishing {
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl

credentials {
username = System.getenv("OSSRH_USERNAME")
password = System.getenv("OSSRH_PASSWORD")
username = project.findProperty("ossrhUsername") ?: System.getenv("OSSRH_USERNAME")
password = project.findProperty("ossrhPassword") ?: System.getenv("OSSRH_PASSWORD")
}
}
}
Expand All @@ -72,4 +72,4 @@ publishing {
signing {
useGpgCmd()
sign publishing.publications.mavenJava
}
}
6 changes: 3 additions & 3 deletions test-extensions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ publishing {
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl

credentials {
username = System.getenv("OSSRH_USERNAME")
password = System.getenv("OSSRH_PASSWORD")
username = project.findProperty("ossrhUsername") ?: System.getenv("OSSRH_USERNAME")
password = project.findProperty("ossrhPassword") ?: System.getenv("OSSRH_PASSWORD")
}
}
}
Expand All @@ -68,4 +68,4 @@ publishing {
signing {
useGpgCmd()
sign publishing.publications.mavenJava
}
}

0 comments on commit 50ecf85

Please sign in to comment.