53 lines
1.2 KiB
Groovy
53 lines
1.2 KiB
Groovy
pluginManagement {
|
|
plugins {
|
|
id 'com.intershop.gradle.javacc' version '4.0.1'
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven { url 'https://repo.spring.io/plugins-release' }
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "com.gradle.enterprise" version "3.7.2"
|
|
id "io.spring.ge.conventions" version "0.0.7"
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'spring-ldap'
|
|
|
|
include 'core'
|
|
include 'core-tiger'
|
|
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'
|
|
include 'samples/plain'
|
|
include 'samples/odm'
|
|
include 'samples/boot'
|
|
|
|
|
|
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" |