2013-06-20 12:40:54 -04:00
|
|
|
buildscript {
|
2015-03-23 12:14:26 -04:00
|
|
|
dependencies {
|
2018-02-27 17:23:23 -05:00
|
|
|
classpath 'io.spring.gradle:spring-build-conventions:0.0.15.RELEASE'
|
2017-03-28 16:45:30 -04:00
|
|
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
|
2015-03-23 12:14:26 -04:00
|
|
|
}
|
|
|
|
repositories {
|
2017-06-08 17:59:01 -04:00
|
|
|
maven { url 'https://repo.spring.io/plugins-snapshot' }
|
2015-03-23 12:14:26 -04:00
|
|
|
}
|
2010-08-24 13:27:44 -04:00
|
|
|
}
|
2017-03-28 16:45:30 -04:00
|
|
|
apply plugin: 'io.spring.convention.root'
|
2010-08-24 13:27:44 -04:00
|
|
|
|
2017-03-28 16:45:30 -04:00
|
|
|
group = 'org.springframework.security'
|
|
|
|
description = 'Spring Security'
|
2010-07-07 17:40:17 -04:00
|
|
|
|
2017-03-28 16:45:30 -04:00
|
|
|
ext.snapshotBuild = version.contains("SNAPSHOT")
|
|
|
|
ext.releaseBuild = version.contains("SNAPSHOT")
|
|
|
|
ext.milestoneBuild = !(snapshotBuild || releaseBuild)
|
2017-05-08 12:56:26 -04:00
|
|
|
|
|
|
|
dependencyManagementExport.projects = subprojects.findAll { !it.name.contains('-boot') }
|
2018-02-01 05:56:23 -05:00
|
|
|
|
2018-02-02 12:55:47 -05:00
|
|
|
// Disable JaCoCo when not explicitly requested to enable caching of test
|
2018-02-01 05:56:23 -05:00
|
|
|
// See https://discuss.gradle.org/t/do-not-cache-if-condition-matched-jacoco-agent-configured-with-append-true-satisfied/23504
|
|
|
|
gradle.taskGraph.whenReady { graph ->
|
2018-02-02 12:55:47 -05:00
|
|
|
def enabled = graph.allTasks.any { it instanceof JacocoReport }
|
2018-02-01 05:56:23 -05:00
|
|
|
subprojects { project ->
|
|
|
|
project.plugins.withType(JacocoPlugin) {
|
|
|
|
project.tasks.withType(Test) {
|
|
|
|
jacoco.enabled = enabled
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|