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 {
|
2020-07-23 17:15:24 -04:00
|
|
|
classpath "io.spring.javaformat:spring-javaformat-gradle-plugin:$springJavaformatVersion"
|
2023-02-17 12:58:21 -05:00
|
|
|
classpath 'io.spring.nohttp:nohttp-gradle:0.0.11'
|
2022-09-16 14:29:57 -04:00
|
|
|
classpath "io.freefair.gradle:aspectj-plugin:6.5.1"
|
2020-01-07 12:08:43 -05:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
2021-09-17 16:44:26 -04:00
|
|
|
classpath "com.netflix.nebula:nebula-project-plugin:8.2.0"
|
2015-03-23 12:14:26 -04:00
|
|
|
}
|
|
|
|
repositories {
|
2022-04-18 15:02:21 -04:00
|
|
|
gradlePluginPortal()
|
2015-03-23 12:14:26 -04:00
|
|
|
}
|
2010-08-24 13:27:44 -04:00
|
|
|
}
|
2020-01-07 12:08:43 -05:00
|
|
|
|
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'
|
2021-04-05 11:16:02 -04:00
|
|
|
apply plugin: 'org.springframework.security.update-dependencies'
|
2022-07-11 18:10:19 -04:00
|
|
|
apply plugin: 'org.springframework.security.update-version'
|
2021-04-07 18:57:57 -04:00
|
|
|
apply plugin: 'org.springframework.security.sagan'
|
2021-04-07 22:23:44 -04:00
|
|
|
apply plugin: 'org.springframework.github.milestone'
|
2021-04-30 15:06:39 -04:00
|
|
|
apply plugin: 'org.springframework.github.changelog'
|
2021-12-22 11:05:59 -05:00
|
|
|
apply plugin: 'org.springframework.github.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()
|
2019-03-28 12:08:57 -04:00
|
|
|
}
|
|
|
|
|
2021-04-07 18:57:57 -04:00
|
|
|
tasks.named("saganCreateRelease") {
|
2022-03-25 14:46:51 -04:00
|
|
|
referenceDocUrl = "https://docs.spring.io/spring-security/reference/{version}/index.html"
|
2021-04-07 18:57:57 -04:00
|
|
|
apiDocUrl = "https://docs.spring.io/spring-security/site/docs/{version}/api/"
|
|
|
|
}
|
|
|
|
|
2021-04-07 22:23:44 -04:00
|
|
|
tasks.named("gitHubCheckMilestoneHasNoOpenIssues") {
|
|
|
|
repository {
|
|
|
|
owner = "spring-projects"
|
|
|
|
name = "spring-security"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-11 18:10:19 -04:00
|
|
|
tasks.named("gitHubNextReleaseMilestone") {
|
|
|
|
repository {
|
|
|
|
owner = "spring-projects"
|
|
|
|
name = "spring-security"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named("gitHubCheckNextVersionDueToday") {
|
|
|
|
repository {
|
|
|
|
owner = "spring-projects"
|
|
|
|
name = "spring-security"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named("scheduleNextRelease") {
|
|
|
|
repository {
|
|
|
|
owner = "spring-projects"
|
|
|
|
name = "spring-security"
|
|
|
|
}
|
|
|
|
weekOfMonth = 3
|
|
|
|
dayOfWeek = 1
|
|
|
|
}
|
|
|
|
|
2021-12-22 11:05:59 -05:00
|
|
|
tasks.named("createGitHubRelease") {
|
|
|
|
repository {
|
|
|
|
owner = "spring-projects"
|
|
|
|
name = "spring-security"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-11 18:10:19 -04:00
|
|
|
tasks.named("dispatchGitHubWorkflow") {
|
|
|
|
repository {
|
|
|
|
owner = "spring-projects"
|
|
|
|
name = "spring-security"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-03 15:01:04 -04:00
|
|
|
tasks.named("updateDependencies") {
|
|
|
|
// we aren't Gradle 7 compatible yet
|
|
|
|
checkForGradleUpdate = false
|
|
|
|
}
|
|
|
|
|
2021-04-05 11:16:02 -04:00
|
|
|
updateDependenciesSettings {
|
|
|
|
gitHub {
|
2021-04-05 22:57:34 -04:00
|
|
|
organization = "spring-projects"
|
2021-04-05 11:16:02 -04:00
|
|
|
repository = "spring-security"
|
|
|
|
}
|
|
|
|
addFiles({
|
|
|
|
return [
|
|
|
|
project.file("buildSrc/src/main/groovy/io/spring/gradle/convention/CheckstylePlugin.groovy")
|
|
|
|
]
|
|
|
|
})
|
|
|
|
dependencyExcludes {
|
|
|
|
majorVersionBump()
|
2022-11-15 11:29:37 -05:00
|
|
|
minorVersionBump()
|
2022-09-16 14:02:14 -04:00
|
|
|
releaseCandidatesVersions()
|
2021-04-05 11:16:02 -04:00
|
|
|
alphaBetaVersions()
|
|
|
|
snapshotVersions()
|
2021-04-05 16:05:58 -04:00
|
|
|
addRule { components ->
|
2021-04-05 16:23:52 -04:00
|
|
|
components.withModule("org.python:jython") { selection ->
|
|
|
|
ModuleComponentIdentifier candidate = selection.getCandidate();
|
|
|
|
if (!candidate.getVersion().equals(selection.getCurrentVersion())) {
|
|
|
|
selection.reject("jython updates break integration tests");
|
|
|
|
}
|
|
|
|
}
|
2021-04-05 16:27:25 -04:00
|
|
|
components.withModule("com.nimbusds:nimbus-jose-jwt") { selection ->
|
|
|
|
ModuleComponentIdentifier candidate = selection.getCandidate();
|
|
|
|
if (!candidate.getVersion().equals(selection.getCurrentVersion())) {
|
|
|
|
selection.reject("nimbus-jose-jwt gets updated when oauth2-oidc-sdk is updated to ensure consistency");
|
|
|
|
}
|
|
|
|
}
|
2023-02-17 12:41:24 -05:00
|
|
|
components.withModule("io.mockk:mockk") { selection ->
|
|
|
|
ModuleComponentIdentifier candidate = selection.getCandidate();
|
|
|
|
if (!candidate.getVersion().equals(selection.getCurrentVersion())) {
|
|
|
|
selection.reject("mockk updates break tests");
|
|
|
|
}
|
|
|
|
}
|
2021-04-05 22:56:30 -04:00
|
|
|
components.all { selection ->
|
|
|
|
ModuleComponentIdentifier candidate = selection.getCandidate();
|
|
|
|
// Do not compare version due to multiple versions existing
|
|
|
|
// will cause opensaml 3.x to be updated to 4.x
|
|
|
|
if (candidate.getGroup().equals("org.opensaml")) {
|
|
|
|
selection.reject("org.opensaml maintains two different versions, so it must be updated manually");
|
|
|
|
}
|
|
|
|
}
|
2021-04-05 16:05:58 -04:00
|
|
|
}
|
2021-04-05 11:16:02 -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"
|
2021-09-08 03:58:28 -04:00
|
|
|
options.compilerArgs.add("-parameters")
|
2019-08-12 17:19:03 -04:00
|
|
|
}
|
2018-03-26 21:01:40 -04:00
|
|
|
}
|
2020-06-10 11:08:31 -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 {
|
|
|
|
checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:$springJavaformatVersion"
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-02 13:24:09 -05:00
|
|
|
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
|
|
javaCompiler = javaToolchains.compilerFor {
|
|
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
|
|
}
|
|
|
|
}
|
2020-07-23 17:15:24 -04:00
|
|
|
}
|
|
|
|
|
2020-09-30 10:20:12 -04:00
|
|
|
if (hasProperty('buildScan')) {
|
|
|
|
buildScan {
|
|
|
|
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
|
|
|
|
termsOfServiceAgree = 'yes'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2022-09-14 09:40:08 -04:00
|
|
|
tasks.register('cloneSamples', IncludeRepoTask) {
|
|
|
|
repository = 'spring-projects/spring-security-samples'
|
|
|
|
ref = samplesBranch
|
2022-10-10 10:00:47 -04:00
|
|
|
outputDirectory = project.hasProperty("cloneOutputDirectory") ? project.file("$cloneOutputDirectory") : project.file("build/samples")
|
2021-06-30 08:00:32 -04:00
|
|
|
}
|
2021-09-27 16:48:41 -04:00
|
|
|
|
|
|
|
s101 {
|
|
|
|
configurationDirectory = project.file("etc/s101")
|
|
|
|
}
|