We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09faca6 commit 943477cCopy full SHA for 943477c
build.gradle
@@ -25,6 +25,12 @@ apply plugin: 'io.spring.convention.docs'
25
group = "org.springframework.ldap"
26
description = "Spring LDAP"
27
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
34
nohttp {
35
allowlistFile = project.file("etc/nohttp/allowlist.lines")
36
source.exclude "buildSrc/build/**"
0 commit comments