Skip to content

Commit

Permalink
Fix publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
MasonM committed Sep 16, 2023
1 parent ea85502 commit 669e1f8
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ signing {
}

ext {
ossrhUsername = hasProperty('ossrhUsername') ? ossrhUsername : ''
ossrhPassword = hasProperty('ossrhPassword') ? ossrhPassword : ''
ossrhUsername = project.hasProperty('ossrhUsername') ? ossrhUsername : ''
ossrhPassword = project.hasProperty('ossrhPassword') ? ossrhPassword : ''
}

publishing {
Expand All @@ -102,15 +102,6 @@ publishing {
password = ossrhPassword
}
}

maven {
name 'snapshots'
url 'https://oss.sonatype.org/content/repositories/snapshots'
credentials {
username = ossrhUsername
password = ossrhPassword
}
}
}

publications {
Expand Down

0 comments on commit 669e1f8

Please sign in to comment.