Skip to content

Commit 04c612e

Browse files
committed
Release 0.1.0
1 parent 6a07679 commit 04c612e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

annotations/build.gradle

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

5959
credentials {
60-
username = System.getenv("OSSRH_USERNAME")
61-
password = System.getenv("OSSRH_PASSWORD")
60+
username = ossrhUsername
61+
password = ossrhPassword
6262
}
6363
}
6464
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ subprojects {
4444
apply plugin: "jacoco"
4545

4646
group = 'org.mapstruct.extensions.spring'
47-
version = '0.1.0-SNAPSHOT'
47+
version = '0.1.0'
4848

4949
java {
5050
toolchain {

extensions/build.gradle

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

6767
credentials {
68-
username = System.getenv("OSSRH_USERNAME")
69-
password = System.getenv("OSSRH_PASSWORD")
68+
username = ossrhUsername
69+
password = ossrhPassword
7070
}
7171
}
7272
}

0 commit comments

Comments
 (0)