Skip to content

Commit 84bd656

Browse files
committed
Prepared next development version
1 parent f8db923 commit 84bd656

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

annotations/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ publishing {
5252
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
5353

5454
credentials {
55-
username = ossrhUsername
56-
password = ossrhPassword
55+
username = System.getenv("OSSRH_USERNAME")
56+
password = System.getenv("OSSRH_PASSWORD")
5757
}
5858
}
5959
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ subprojects {
5555
apply plugin: "jacoco"
5656

5757
group = 'org.mapstruct.extensions.spring'
58-
version = '1.1.1'
58+
version = '1.1.2-SNAPSHOT'
5959

6060
java {
6161
toolchain {

extensions/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ publishing {
6262
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
6363

6464
credentials {
65-
username = ossrhUsername
66-
password = ossrhPassword
65+
username = System.getenv("OSSRH_USERNAME")
66+
password = System.getenv("OSSRH_PASSWORD")
6767
}
6868
}
6969
}

test-extensions/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ publishing {
5858
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
5959

6060
credentials {
61-
username = ossrhUsername
62-
password = ossrhPassword
61+
username = System.getenv("OSSRH_USERNAME")
62+
password = System.getenv("OSSRH_PASSWORD")
6363
}
6464
}
6565
}

0 commit comments

Comments
 (0)