2013-06-20 12:40:54 -04:00
|
|
|
buildscript {
|
2015-03-23 12:14:26 -04:00
|
|
|
dependencies {
|
2021-06-30 11:27:53 -04:00
|
|
|
classpath 'io.spring.gradle:spring-build-conventions:0.0.23.2.RELEASE'
|
2017-03-28 16:45:30 -04:00
|
|
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
|
2021-06-21 05:05:10 -04:00
|
|
|
classpath 'io.spring.nohttp:nohttp-gradle:0.0.8'
|
2019-09-11 18:36:10 -04:00
|
|
|
classpath "io.freefair.gradle:aspectj-plugin:4.0.2"
|
2015-03-23 12:14:26 -04:00
|
|
|
}
|
|
|
|
repositories {
|
2020-11-16 16:40:31 -05:00
|
|
|
maven {
|
|
|
|
url = 'https://repo.spring.io/plugins-snapshot'
|
|
|
|
if (project.hasProperty('artifactoryUsername')) {
|
|
|
|
credentials {
|
|
|
|
username "$artifactoryUsername"
|
|
|
|
password "$artifactoryPassword"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-15 19:05:40 -04:00
|
|
|
maven { url 'https://plugins.gradle.org/m2/' }
|
2015-03-23 12:14:26 -04:00
|
|
|
}
|
2010-08-24 13:27:44 -04:00
|
|
|
}
|
2019-03-28 12:08:57 -04:00
|
|
|
apply plugin: 'io.spring.nohttp'
|
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
|
|
|
|
2019-03-28 12:08:57 -04:00
|
|
|
repositories {
|
2019-05-01 21:08:26 -04:00
|
|
|
mavenCentral()
|
2019-03-28 12:08:57 -04:00
|
|
|
}
|
|
|
|
|
2018-03-26 21:01:40 -04:00
|
|
|
subprojects {
|
|
|
|
plugins.withType(JavaPlugin) {
|
|
|
|
project.sourceCompatibility='1.8'
|
|
|
|
}
|
2019-08-12 17:19:03 -04:00
|
|
|
|
|
|
|
tasks.withType(JavaCompile) {
|
2019-08-13 16:20:21 -04:00
|
|
|
options.encoding = "UTF-8"
|
2019-08-12 17:19:03 -04:00
|
|
|
}
|
2018-03-26 21:01:40 -04:00
|
|
|
}
|
2020-11-17 10:02:21 -05:00
|
|
|
|
2020-11-17 10:05:37 -05:00
|
|
|
if (project.hasProperty('artifactoryUsername')) {
|
2020-11-17 10:02:21 -05:00
|
|
|
allprojects { project ->
|
|
|
|
project.repositories { repos ->
|
|
|
|
all { repo ->
|
|
|
|
if (!repo.url.toString().startsWith("https://repo.spring.io/")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
repo.credentials {
|
|
|
|
username = artifactoryUsername
|
|
|
|
password = artifactoryPassword
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|