2013-06-21 00:40:54 +08:00
|
|
|
buildscript {
|
2015-03-24 00:14:26 +08:00
|
|
|
dependencies {
|
2017-05-10 13:10:31 +08:00
|
|
|
classpath 'io.spring.gradle:spring-build-conventions:0.0.1.RELEASE'
|
2017-03-29 04:45:30 +08:00
|
|
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
|
2015-03-24 00:14:26 +08:00
|
|
|
}
|
|
|
|
repositories {
|
2017-05-10 13:10:31 +08:00
|
|
|
maven { url 'https://repo.spring.io/plugins-release' }
|
2015-03-24 00:14:26 +08:00
|
|
|
}
|
2010-08-25 01:27:44 +08:00
|
|
|
}
|
2017-03-29 04:45:30 +08:00
|
|
|
apply plugin: 'io.spring.convention.root'
|
2010-08-25 01:27:44 +08:00
|
|
|
|
2017-03-29 04:45:30 +08:00
|
|
|
group = 'org.springframework.security'
|
|
|
|
description = 'Spring Security'
|
2010-07-08 05:40:17 +08:00
|
|
|
|
2017-03-29 04:45:30 +08:00
|
|
|
ext.snapshotBuild = version.contains("SNAPSHOT")
|
|
|
|
ext.releaseBuild = version.contains("SNAPSHOT")
|
|
|
|
ext.milestoneBuild = !(snapshotBuild || releaseBuild)
|
2017-05-09 00:56:26 +08:00
|
|
|
|
|
|
|
dependencyManagementExport.projects = subprojects.findAll { !it.name.contains('-boot') }
|