HHH-12172 - Move to BinTray for publishing artifacts

This commit is contained in:
Steve Ebersole 2018-02-01 11:43:45 -06:00
parent 867d668482
commit a6e6f82944
1 changed files with 2 additions and 9 deletions

View File

@ -161,8 +161,9 @@ publishing {
}
}
task release( dependsOn: createModulesZip )
task ciBuild( dependsOn: [clean, test, publish] )
task release( dependsOn: [clean, test, publish] )
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ -195,11 +196,3 @@ processTestResources {
}
if ( project.isSnapshot ) {
// only run the ci build tasks for SNAPSHOT versions
task ciBuild( dependsOn: [clean, test] )
}
else {
task release( dependsOn: [clean, test] )
}