1
0
mirror of synced 2026-05-22 21:33:16 +00:00
Files

131 lines
3.5 KiB
Groovy
Raw Permalink Normal View History

2022-09-14 10:40:08 -03:00
import io.spring.gradle.IncludeRepoTask
2023-08-18 10:35:46 -05:00
import trang.RncToXsd
2022-09-14 10:40:08 -03:00
2013-06-20 11:40:54 -05:00
buildscript {
2015-03-23 11:14:26 -05:00
dependencies {
2023-09-27 15:42:42 -03: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 11:14:26 -05:00
}
repositories {
2018-10-15 17:05:40 -06:00
maven { url 'https://plugins.gradle.org/m2/' }
2015-03-23 11:14:26 -05:00
}
}
2023-10-05 10:22:53 -03:00
plugins {
alias(libs.plugins.org.gradle.wrapper.upgrade)
}
2019-03-28 11:08:57 -05:00
apply plugin: 'io.spring.nohttp'
2019-12-16 10:45:15 -06:00
apply plugin: 'locks'
2017-03-28 15:45:30 -05:00
apply plugin: 'io.spring.convention.root'
apply plugin: 'org.jetbrains.kotlin.jvm'
apply plugin: 'org.springframework.security.versions.verify-dependencies-versions'
apply plugin: 'org.springframework.security.check-expected-branch-version'
2023-07-13 14:25:10 -05:00
apply plugin: 'io.spring.security.release'
2017-03-28 15:45:30 -05:00
group = 'org.springframework.security'
description = 'Spring Security'
2010-07-07 22:40:17 +01:00
2017-03-28 15:45:30 -05:00
ext.snapshotBuild = version.contains("SNAPSHOT")
ext.releaseBuild = version.contains("SNAPSHOT")
ext.milestoneBuild = !(snapshotBuild || releaseBuild)
2017-05-08 11:56:26 -05:00
2019-03-28 11:08:57 -05:00
repositories {
2019-05-01 20:08:26 -05:00
mavenCentral()
2023-07-14 18:38:34 -06:00
maven { url "https://repo.spring.io/milestone" }
2019-03-28 11:08:57 -05:00
}
2023-07-13 14:25:10 -05:00
springRelease {
2022-05-04 17:19:52 -05:00
weekOfMonth = 3
dayOfWeek = 1
2023-07-13 14:25:10 -05:00
referenceDocUrl = "https://docs.spring.io/spring-security/reference/{version}/index.html"
2025-11-19 15:22:36 -07:00
apiDocUrl = "https://docs.spring.io/spring-security/reference/{version}/api/java/index.html"
2023-07-13 14:25:10 -05:00
replaceSnapshotVersionInReferenceDocUrl = true
2022-05-04 14:03:32 -05:00
}
2023-10-18 19:00:24 -03:00
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
return project.property('testToolchain').toString().toInteger()
}
return 17
}
2023-09-11 10:43:29 -05:00
subprojects {
java {
toolchain {
languageVersion = JavaLanguageVersion.of(toolchainVersion())
}
}
2023-09-26 14:41:24 -05:00
kotlin {
jvmToolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
2023-09-11 10:43:29 -05:00
tasks.withType(JavaCompile).configureEach {
2019-08-13 22:20:21 +02:00
options.encoding = "UTF-8"
2021-09-08 09:58:28 +02:00
options.compilerArgs.add("-parameters")
2023-09-27 11:59:09 -03:00
options.release.set(17)
2023-09-11 10:43:29 -05:00
}
}
2021-04-05 10:16:02 -05:00
2020-07-23 14:15:24 -07:00
allprojects {
if (!['spring-security-bom', 'spring-security-docs'].contains(project.name)) {
apply plugin: 'io.spring.javaformat'
apply plugin: 'checkstyle'
pluginManager.withPlugin("io.spring.convention.checkstyle", { plugin ->
configure(plugin) {
dependencies {
2023-09-27 15:42:42 -03:00
checkstyle libs.io.spring.javaformat.spring.javaformat.checkstyle
}
checkstyle {
toolVersion = '8.34'
}
}
})
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 14:15:24 -07:00
}
}
}
}
2024-05-07 16:00:10 -05:00
develocity {
2020-09-30 07:20:12 -07:00
buildScan {
2024-05-07 16:00:10 -05:00
termsOfUseUrl = 'https://gradle.com/help/legal-terms-of-use'
termsOfUseAgree = 'yes'
2020-09-30 07:20:12 -07:00
}
}
2020-06-10 10:08:31 -05:00
nohttp {
2024-10-17 21:40:51 -05:00
source.exclude "buildSrc/build/**", "javascript/.gradle/**", "javascript/package-lock.json", "javascript/node_modules/**", "javascript/build/**", "javascript/dist/**"
2023-08-18 10:35:46 -05:00
source.builtBy(project(':spring-security-config').tasks.withType(RncToXsd))
2020-06-10 10:08:31 -05:00
}
2021-06-30 09:00:32 -03:00
2025-01-21 13:38:07 -06:00
tasks.named('checkstyleNohttp') {
maxHeapSize = '1g'
}
2023-11-10 11:16:40 -03: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 09:00:32 -03:00
}
2021-09-27 14:48:41 -06:00
2023-10-05 10:22:53 -03:00
wrapperUpgrade {
gradle {
2023-10-10 08:32:33 -03:00
'spring-security' {
2023-10-05 10:22:53 -03:00
repo = 'spring-projects/spring-security'
2025-03-20 13:21:24 -06:00
baseBranch = '6.3.x' // runs only on 6.3.x and the update is merged forward to main
2023-10-05 10:22:53 -03:00
}
}
}