From fde9142d8d1b8564924208c0c3c869180d9729e8 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Thu, 5 Jul 2012 13:56:47 -0500 Subject: [PATCH] SEC-1907: Exclude crypto dependency in core module since classes are bundled in core --- gradle/maven-deployment.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle/maven-deployment.gradle b/gradle/maven-deployment.gradle index dafaec648e..84a3679fca 100644 --- a/gradle/maven-deployment.gradle +++ b/gradle/maven-deployment.gradle @@ -83,6 +83,7 @@ def customizePom(pom) { if (p.artifactId == 'spring-security-core') { p.dependencies.find { dep -> dep.artifactId == 'spring-jdbc'}.optional = true p.dependencies.find { dep -> dep.artifactId == 'spring-tx'}.optional = true + p.dependencies.removeAll { dep -> dep.artifactId == 'spring-security-crypto' } } }