From 1c284fb7a43fdffa2c9fedc37ad3ef10263c10c5 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Mon, 26 Aug 2013 07:49:43 -0500 Subject: [PATCH] LDAP-251: Disable publishing of non core modules This is necessary so that the Gradle builds can be promoted. Otherwise an error like the following is displayed when promoting the build: HTTP Status 400 - Unable to find artifact 'spring-ldap-article-sample-1.3.2.RELEASE.war' --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index 9d945dd1..99c3a619 100644 --- a/build.gradle +++ b/build.gradle @@ -44,6 +44,8 @@ configure(subprojects - coreModules) { sonarRunner { skipProject = true } + + tasks.findByPath("artifactoryPublish")?.enabled = false } description = "Spring LDAP"