Skip to content

Commit

Permalink
test 18
Browse files Browse the repository at this point in the history
  • Loading branch information
jcpitre committed Nov 7, 2024
1 parent 26dc3cb commit a6406e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ subprojects {
def fullProjectName = 'gtfs-validator-' + project.name

afterEvaluate {
println "SONATYPE_TOKEN_USERNAME = " + System.getenv('SONATYPE_TOKEN_USERNAME')
println "SONATYPE_TOKEN_PASSWORD = " + System.getenv('SONATYPE_TOKEN_PASSWORD')
println "SONATYPE_USERNAME = " + System.getenv('SONATYPE_USERNAME')
println "SONATYPE_PASSWORD = " + System.getenv('SONATYPE_PASSWORD')

publishing {
repositories {
Expand All @@ -122,8 +122,8 @@ subprojects {
maven {
url = 'https://s01.oss.sonatype.org/service/local/staging/deploy/maven2'
credentials {
username System.getenv("SONATYPE_TOKEN_USERNAME")
password System.getenv("SONATYPE_TOKEN_PASSWORD")
username System.getenv("SONATYPE_USERNAME")
password System.getenv("SONATYPE_PASSWORD")
}
}
}
Expand Down

0 comments on commit a6406e9

Please sign in to comment.