Skip to content

Commit 943477c

Browse files
committed
Removed non-core modules from deployment
1 parent 09faca6 commit 943477c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ apply plugin: 'io.spring.convention.docs'
2525
group = "org.springframework.ldap"
2626
description = "Spring LDAP"
2727

28+
ext.coreModules = subprojects.findAll { p-> (!p.name.contains("test") && !p.name.contains("sample") && !p.name.contains("sandbox")) || p.name.contains("spring-ldap-test") }
29+
30+
configure(subprojects - coreModules) {
31+
tasks.findByPath("publishArtifacts")?.enabled = false
32+
}
33+
2834
nohttp {
2935
allowlistFile = project.file("etc/nohttp/allowlist.lines")
3036
source.exclude "buildSrc/build/**"

0 commit comments

Comments
 (0)