Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
Signed-off-by: Joel Dickson <[email protected]>
  • Loading branch information
joeldickson authored Aug 30, 2024
1 parent 76d3255 commit 68ac2fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ publishing {
def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username = System.getenv("MAVEN_USERNAME") ?: ossrhUsername
password = System.getenv("MAVEN_PASSWORD") ?: ossrhPassword
username = System.getenv("MAVEN_USERNAME") ?: ""
password = System.getenv("MAVEN_PASSWORD") ?: ""
}
}
}
Expand All @@ -86,4 +86,4 @@ javadoc {
if(JavaVersion.current().isJava9Compatible()) {
options.addBooleanOption('html5', true)
}
}
}

0 comments on commit 68ac2fb

Please sign in to comment.