Skip to content

Commit

Permalink
Release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Chessray committed Jan 3, 2024
1 parent b6ba86d commit f8db923
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 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 = ossrhUsername
password = ossrhPassword
}
}
}
Expand Down
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.1-SNAPSHOT'
version = '1.1.1'

java {
toolchain {
Expand Down
4 changes: 2 additions & 2 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 = ossrhUsername
password = ossrhPassword
}
}
}
Expand Down
4 changes: 2 additions & 2 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 = ossrhUsername
password = ossrhPassword
}
}
}
Expand Down

0 comments on commit f8db923

Please sign in to comment.