Files
spring-ldap/gradle/deploy-artifacts.gradle
2020-05-01 16:55:30 -05:00

12 lines
308 B
Groovy

def isSnapshot = version?.matches(/^.*[.-]BUILD-SNAPSHOT$/)
task deployArtifacts {
group = 'Deploy tasks'
description = "Deploys the artifacts to either Artifactory or Maven Central"
if(isSnapshot) {
dependsOn "artifactoryPublish"
} else {
dependsOn "uploadArchives"
}
}