Remove install -> check dependency which causes duplicate tests for bintrayUpload

It seems the bintrayUpload task depends on install so our release cycle
in travis is doing redundant test runs
This commit is contained in:
R. Tyler Croy 2015-10-01 17:20:00 -07:00
parent bf8d3a0e4e
commit 6c609bf5a9
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 2 additions and 2 deletions

View File

@ -76,8 +76,9 @@ test {
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
task sourcesJar(type: Jar) {
classifier = 'sources'
dependsOn classes
from sourceSets.main.allSource
}
@ -112,6 +113,5 @@ bintray {
}
}
bintrayUpload.dependsOn assemble
install.dependsOn check, assemble
// vim: ft=groovy