From cf6031f98e8aedb8ba99762cdf069fda985bc816 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 24 Apr 2017 13:12:48 +0200 Subject: [PATCH] Fix duplicated entry in spring-core module Issue: SPR-15462 --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index cec3bba5572..23688d993d1 100644 --- a/build.gradle +++ b/build.gradle @@ -273,6 +273,7 @@ configure(subprojects - project(":spring-build-src")) { subproject -> } task sourcesJar(type: Jar, dependsOn: classes) { + duplicatesStrategy = DuplicatesStrategy.EXCLUDE classifier = 'sources' from sourceSets.main.allSource // Don't include or exclude anything explicitly by default. See SPR-12085.