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 4d37dc4 commit 73a9bb9Copy full SHA for 73a9bb9
src/com/inet/gradle/setup/dmg/preferences/build.gradle
@@ -49,7 +49,7 @@ if( !System.getProperty("local") && file( '../BuildScripts/base.gradle' ).exists
49
} else {
50
println "Uploading into local '../repo'"
51
version += '-SNAPSHOT' // setting version to snapshot
52
- uploadArchives {
+ publishing {
53
repositories {
54
mavenDeployer {
55
repository(url: uri('../repo'))
@@ -59,7 +59,7 @@ if( !System.getProperty("local") && file( '../BuildScripts/base.gradle' ).exists
59
}
60
61
task sourcesJar(type: Jar) {
62
- uploadArchives.dependsOn sourcesJar
+ publishing.dependsOn sourcesJar
63
from sourceSets.main.resources
64
classifier "sources"
65
0 commit comments