-
Notifications
You must be signed in to change notification settings - Fork 483
/
settings.gradle
50 lines (43 loc) · 1.16 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
pluginManagement {
plugins {
id 'com.intershop.gradle.javacc' version '4.0.1'
}
repositories {
gradlePluginPortal()
mavenCentral()
}
}
plugins {
id "com.gradle.develocity" version "3.17.6"
id "io.spring.ge.conventions" version "0.0.17"
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
}
}
rootProject.name = 'spring-ldap'
include 'core'
include 'dependencies'
include 'test-support'
include 'ldif/ldif-core'
include 'odm'
include 'sandbox'
include 'test/integration-tests'
//include 'test/integration-tests-spring20'
//include 'test/integration-tests-spring25'
//include 'test/integration-tests-spring30'
include 'test/integration-tests-openldap'
include 'test/integration-tests-sunone'
include 'test/integration-tests-ad'
rootProject.children.each { p->
def name = p.name
def isSample = name.contains("sample")
name = name.replaceFirst(".*?/","")
if(isSample && !name.contains("sample")) {
name += "-sample"
}
p.name = "spring-ldap-" + name
}
findProject(":spring-ldap-test-support").name = "spring-ldap-test"