We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21c3b03 commit ccaf413Copy full SHA for ccaf413
gradle/publishing.gradle
@@ -61,8 +61,8 @@ publishing {
61
repositories {
62
maven {
63
credentials {
64
- username = project.findProperty('artifactoryPublishUsername') ?: ''
65
- password = project.findProperty('artifactoryPublishPassword') ?: ''
+ username = System.getenv('ARTIFACTORY_USERNAME') ?: ''
+ password = System.getenv('ARTIFACTORY_PASSWORD') ?: ''
66
}
67
url = isGrailsPlugin ?
68
uri('https://repo.grails.org/grails/plugins3-snapshots-local') :
0 commit comments