Skip to content

Commit a0500cb

Browse files
author
dombar
committed
fix maven path
1 parent f210d77 commit a0500cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

publishing.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ publishing {
5757
maven {
5858
name = project.hasProperty('MAVEN_USER') ? project.getProperty('MAVEN_USER') : ""
5959

60-
url project.hasProperty('MAVEN_URL') ? project.getProperty("MAVEN_URL") : "" +
61-
project.version.endsWith('-SNAPSHOT') ? '-snapshots' : '-releases'
60+
url = (project.hasProperty('MAVEN_URL') ? project.getProperty("MAVEN_URL") : "") +
61+
(project.version.endsWith('-SNAPSHOT') ? '-snapshots' : '-releases')
6262
}
6363
}
6464
}

0 commit comments

Comments
 (0)