2022-09-14 09:40:08 -04:00
|
|
|
import io.spring.gradle.IncludeRepoTask
|
2023-08-18 11:35:46 -04:00
|
|
|
import trang.RncToXsd
|
2022-09-14 09:40:08 -04:00
|
|
|
|
2013-06-20 12:40:54 -04:00
|
|
|
buildscript {
|
2015-03-23 12:14:26 -04:00
|
|
|
dependencies {
|
2023-09-27 14:42:42 -04:00
|
|
|
classpath libs.io.spring.javaformat.spring.javaformat.gradle.plugin
|
|
|
|
classpath libs.io.spring.nohttp.nohttp.gradle
|
|
|
|
classpath libs.io.freefair.gradle.aspectj.plugin
|
|
|
|
classpath libs.org.jetbrains.kotlin.kotlin.gradle.plugin
|
|
|
|
classpath libs.com.netflix.nebula.nebula.project.plugin
|
2015-03-23 12:14:26 -04:00
|
|
|
}
|
|
|
|
repositories {
|
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
|
|
|
}
|
2020-01-07 12:08:43 -05:00
|
|
|
|
2023-10-05 09:22:53 -04:00
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.org.gradle.wrapper.upgrade)
|
|
|
|
}
|
|
|
|
|
2019-03-28 12:08:57 -04:00
|
|
|
apply plugin: 'io.spring.nohttp'
|
2019-12-16 11:45:15 -05:00
|
|
|
apply plugin: 'locks'
|
2021-09-27 16:48:41 -04:00
|
|
|
apply plugin: 's101'
|
2017-03-28 16:45:30 -04:00
|
|
|
apply plugin: 'io.spring.convention.root'
|
2020-01-07 12:08:43 -05:00
|
|
|
apply plugin: 'org.jetbrains.kotlin.jvm'
|
2023-10-25 12:33:43 -04:00
|
|
|
apply plugin: 'org.springframework.security.versions.verify-dependencies-versions'
|
2024-06-26 13:04:17 -04:00
|
|
|
apply plugin: 'org.springframework.security.check-expected-branch-version'
|
2023-07-13 15:25:10 -04:00
|
|
|
apply plugin: 'io.spring.security.release'
|
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
|
|
|
|
2019-03-28 12:08:57 -04:00
|
|
|
repositories {
|
2019-05-01 21:08:26 -04:00
|
|
|
mavenCentral()
|
2023-07-14 20:38:34 -04:00
|
|
|
maven { url "https://repo.spring.io/milestone" }
|
2019-03-28 12:08:57 -04:00
|
|
|
}
|
|
|
|
|
2023-07-13 15:25:10 -04:00
|
|
|
springRelease {
|
2022-05-04 18:19:52 -04:00
|
|
|
weekOfMonth = 3
|
|
|
|
dayOfWeek = 1
|
2023-07-13 15:25:10 -04:00
|
|
|
referenceDocUrl = "https://docs.spring.io/spring-security/reference/{version}/index.html"
|
2024-05-08 16:58:45 -04:00
|
|
|
apiDocUrl = "https://docs.spring.io/spring-security/site/docs/{version}/api/"
|
2023-07-13 15:25:10 -04:00
|
|
|
replaceSnapshotVersionInReferenceDocUrl = true
|
2022-05-04 15:03:32 -04:00
|
|
|
}
|
|
|
|
|
2023-10-18 18:00:24 -04:00
|
|
|
def toolchainVersion() {
|
|
|
|
if (project.hasProperty('testToolchain')) {
|
|
|
|
return project.property('testToolchain').toString().toInteger()
|
|
|
|
}
|
|
|
|
return 17
|
|
|
|
}
|
|
|
|
|
2023-09-11 11:43:29 -04:00
|
|
|
subprojects {
|
2023-09-21 11:49:12 -04:00
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion = JavaLanguageVersion.of(toolchainVersion())
|
|
|
|
}
|
|
|
|
}
|
2023-09-26 15:41:24 -04:00
|
|
|
kotlin {
|
|
|
|
jvmToolchain {
|
|
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
|
|
}
|
|
|
|
}
|
2023-09-11 11:43:29 -04:00
|
|
|
tasks.withType(JavaCompile).configureEach {
|
2019-08-13 16:20:21 -04:00
|
|
|
options.encoding = "UTF-8"
|
2021-09-08 03:58:28 -04:00
|
|
|
options.compilerArgs.add("-parameters")
|
2023-09-27 10:59:09 -04:00
|
|
|
options.release.set(17)
|
2023-09-11 11:43:29 -04:00
|
|
|
}
|
|
|
|
}
|
2021-04-05 11:16:02 -04:00
|
|
|
|
2020-07-23 17:15:24 -04:00
|
|
|
allprojects {
|
2020-09-09 11:16:07 -04:00
|
|
|
if (!['spring-security-bom', 'spring-security-docs'].contains(project.name)) {
|
|
|
|
apply plugin: 'io.spring.javaformat'
|
|
|
|
apply plugin: 'checkstyle'
|
2020-07-24 14:37:53 -04:00
|
|
|
|
2020-09-09 11:16:07 -04:00
|
|
|
pluginManager.withPlugin("io.spring.convention.checkstyle", { plugin ->
|
|
|
|
configure(plugin) {
|
|
|
|
dependencies {
|
2023-09-27 14:42:42 -04:00
|
|
|
checkstyle libs.io.spring.javaformat.spring.javaformat.checkstyle
|
2020-09-09 11:16:07 -04:00
|
|
|
}
|
|
|
|
checkstyle {
|
|
|
|
toolVersion = '8.34'
|
|
|
|
}
|
2020-07-24 14:37:53 -04:00
|
|
|
}
|
2020-09-09 11:16:07 -04:00
|
|
|
})
|
2020-07-24 14:37:53 -04:00
|
|
|
|
2020-09-09 11:16:07 -04:00
|
|
|
if (project.name.contains('sample')) {
|
|
|
|
tasks.whenTaskAdded { task ->
|
|
|
|
if (task.name.contains('format') || task.name.contains('checkFormat') || task.name.contains("checkstyle")) {
|
|
|
|
task.enabled = false
|
|
|
|
}
|
2020-07-23 17:15:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-07 17:00:10 -04:00
|
|
|
develocity {
|
2020-09-30 10:20:12 -04:00
|
|
|
buildScan {
|
2024-05-07 17:00:10 -04:00
|
|
|
termsOfUseUrl = 'https://gradle.com/help/legal-terms-of-use'
|
|
|
|
termsOfUseAgree = 'yes'
|
2020-09-30 10:20:12 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-10 11:08:31 -04:00
|
|
|
nohttp {
|
2021-04-02 14:13:07 -04:00
|
|
|
source.exclude "buildSrc/build/**"
|
2023-08-18 11:35:46 -04:00
|
|
|
source.builtBy(project(':spring-security-config').tasks.withType(RncToXsd))
|
2020-06-10 11:08:31 -04:00
|
|
|
}
|
2021-06-30 08:00:32 -04:00
|
|
|
|
2023-11-10 09:16:40 -05:00
|
|
|
tasks.register('cloneRepository', IncludeRepoTask) {
|
|
|
|
repository = project.getProperties().get("repositoryName")
|
|
|
|
ref = project.getProperties().get("ref")
|
|
|
|
var defaultDirectory = project.file("build/tmp/clone")
|
|
|
|
outputDirectory = project.hasProperty("cloneOutputDirectory") ? project.file("$cloneOutputDirectory") : defaultDirectory
|
2021-06-30 08:00:32 -04:00
|
|
|
}
|
2021-09-27 16:48:41 -04:00
|
|
|
|
|
|
|
s101 {
|
2024-02-26 11:02:46 -05:00
|
|
|
repository = 'https://structure101.com/binaries/latest'
|
2021-09-27 16:48:41 -04:00
|
|
|
configurationDirectory = project.file("etc/s101")
|
|
|
|
}
|
2023-10-05 09:22:53 -04:00
|
|
|
|
|
|
|
wrapperUpgrade {
|
|
|
|
gradle {
|
2023-10-10 07:32:33 -04:00
|
|
|
'spring-security' {
|
2023-10-05 09:22:53 -04:00
|
|
|
repo = 'spring-projects/spring-security'
|
2024-06-06 22:03:44 -04:00
|
|
|
baseBranch = '6.2.x' // runs only on 6.2.x and the update is merged forward to main
|
2023-10-05 09:22:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|