Bumps [io.spring.develocity.conventions](https://github.com/spring-io/develocity-conventions) from 0.0.22 to 0.0.23. - [Release notes](https://github.com/spring-io/develocity-conventions/releases) - [Commits](https://github.com/spring-io/develocity-conventions/compare/v0.0.22...v0.0.23) --- updated-dependencies: - dependency-name: io.spring.develocity.conventions dependency-version: 0.0.23 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
50 lines
1.1 KiB
Groovy
50 lines
1.1 KiB
Groovy
pluginManagement {
|
|
plugins {
|
|
id 'com.intershop.gradle.javacc' version '4.1.3'
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "io.spring.develocity.conventions" version "0.0.23"
|
|
}
|
|
|
|
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"
|