2
0

deploy-artifacts.gradle 281 B

1234567891011
  1. def isSnapshot = version?.matches(/^.*[.-]BUILD-SNAPSHOT$/)
  2. task deployArtifacts {
  3. group = 'Deploy tasks'
  4. description = "Deploys the artifacts to either Artifactory or Maven Central"
  5. if(isSnapshot) {
  6. dependsOn "artifactoryPublish"
  7. } else {
  8. dependsOn "uploadArchives"
  9. }
  10. }