We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f210d77 commit a0500cbCopy full SHA for a0500cb
publishing.gradle
@@ -57,8 +57,8 @@ publishing {
57
maven {
58
name = project.hasProperty('MAVEN_USER') ? project.getProperty('MAVEN_USER') : ""
59
60
- url project.hasProperty('MAVEN_URL') ? project.getProperty("MAVEN_URL") : "" +
61
- project.version.endsWith('-SNAPSHOT') ? '-snapshots' : '-releases'
+ url = (project.hasProperty('MAVEN_URL') ? project.getProperty("MAVEN_URL") : "") +
+ (project.version.endsWith('-SNAPSHOT') ? '-snapshots' : '-releases')
62
}
63
64
0 commit comments