| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 | 
							- import io.spring.gradle.IncludeRepoTask
 
- import trang.RncToXsd
 
- buildscript {
 
- 	dependencies {
 
- 		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
 
- 	}
 
- 	repositories {
 
- 		maven { url 'https://plugins.gradle.org/m2/' }
 
- 	}
 
- }
 
- plugins {
 
- 	alias(libs.plugins.org.gradle.wrapper.upgrade)
 
- }
 
- apply plugin: 'io.spring.nohttp'
 
- apply plugin: 'locks'
 
- 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'
 
- apply plugin: 'io.spring.security.release'
 
- group = 'org.springframework.security'
 
- description = 'Spring Security'
 
- ext.snapshotBuild = version.contains("SNAPSHOT")
 
- ext.releaseBuild = version.contains("SNAPSHOT")
 
- ext.milestoneBuild = !(snapshotBuild || releaseBuild)
 
- repositories {
 
- 	mavenCentral()
 
- 	maven { url "https://repo.spring.io/milestone" }
 
- }
 
- springRelease {
 
- 	weekOfMonth = 3
 
- 	dayOfWeek = 1
 
- 	referenceDocUrl = "https://docs.spring.io/spring-security/reference/{version}/index.html"
 
- 	apiDocUrl = "https://docs.spring.io/spring-security/site/docs/{version}/api/"
 
- 	replaceSnapshotVersionInReferenceDocUrl = true
 
- }
 
- def toolchainVersion() {
 
- 	if (project.hasProperty('testToolchain')) {
 
- 		return project.property('testToolchain').toString().toInteger()
 
- 	}
 
- 	return 17
 
- }
 
- subprojects {
 
- 	java {
 
- 		toolchain {
 
- 			languageVersion = JavaLanguageVersion.of(toolchainVersion())
 
- 		}
 
- 	}
 
- 	kotlin {
 
- 		jvmToolchain {
 
- 			languageVersion = JavaLanguageVersion.of(17)
 
- 		}
 
- 	}
 
- 	tasks.withType(JavaCompile).configureEach {
 
- 		options.encoding = "UTF-8"
 
- 		options.compilerArgs.add("-parameters")
 
- 		options.release.set(17)
 
- 	}
 
- }
 
- 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 {
 
- 					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
 
- 				}
 
- 			}
 
- 		}
 
- 	}
 
- }
 
- develocity {
 
- 	buildScan {
 
- 		termsOfUseUrl = 'https://gradle.com/help/legal-terms-of-use'
 
- 		termsOfUseAgree = 'yes'
 
- 	}
 
- }
 
- nohttp {
 
- 	source.exclude "buildSrc/build/**", "javascript/.gradle/**", "javascript/package-lock.json", "javascript/node_modules/**", "javascript/build/**", "javascript/dist/**"
 
- 	source.builtBy(project(':spring-security-config').tasks.withType(RncToXsd))
 
- }
 
- tasks.named('checkstyleNohttp') {
 
- 	maxHeapSize = '1g'
 
- }
 
- 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
 
- }
 
- wrapperUpgrade {
 
- 	gradle {
 
- 		'spring-security' {
 
- 			repo = 'spring-projects/spring-security'
 
- 			baseBranch = '6.3.x' // runs only on 6.3.x and the update is merged forward to main
 
- 		}
 
- 	}
 
- }
 
 
  |