Skip to content

Commit 3c98679

Browse files
committed
Release 0.1.0
1 parent 04c612e commit 3c98679

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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 = ossrhUsername
61-
password = ossrhPassword
60+
username = System.getenv("OSSRH_USERNAME")
61+
password = System.getenv("OSSRH_PASSWORD")
6262
}
6363
}
6464
}

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 = ossrhUsername
69-
password = ossrhPassword
68+
username = System.getenv("OSSRH_USERNAME")
69+
password = System.getenv("OSSRH_PASSWORD")
7070
}
7171
}
7272
}

0 commit comments

Comments
 (0)