156 lines
3.8 KiB
Groovy
156 lines
3.8 KiB
Groovy
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/' }
|
|
}
|
|
}
|
|
|
|
apply plugin: 'io.spring.nohttp'
|
|
apply plugin: 'locks'
|
|
apply plugin: 's101'
|
|
apply plugin: 'io.spring.convention.root'
|
|
apply plugin: 'org.jetbrains.kotlin.jvm'
|
|
apply plugin: 'org.springframework.security.update-version'
|
|
apply plugin: 'org.springframework.security.sagan'
|
|
apply plugin: 'org.springframework.github.milestone'
|
|
apply plugin: 'org.springframework.github.changelog'
|
|
apply plugin: 'org.springframework.github.release'
|
|
apply plugin: 'org.springframework.security.versions.verify-dependencies-versions'
|
|
|
|
group = 'org.springframework.security'
|
|
description = 'Spring Security'
|
|
|
|
ext.snapshotBuild = version.contains("SNAPSHOT")
|
|
ext.releaseBuild = version.contains("SNAPSHOT")
|
|
ext.milestoneBuild = !(snapshotBuild || releaseBuild)
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
tasks.named("saganCreateRelease") {
|
|
referenceDocUrl = "https://docs.spring.io/spring-security/reference/{version}/index.html"
|
|
apiDocUrl = "https://docs.spring.io/spring-security/site/docs/{version}/api/"
|
|
}
|
|
|
|
tasks.named("gitHubCheckMilestoneHasNoOpenIssues") {
|
|
repository {
|
|
owner = "spring-projects"
|
|
name = "spring-security"
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
tasks.named("createGitHubRelease") {
|
|
repository {
|
|
owner = "spring-projects"
|
|
name = "spring-security"
|
|
}
|
|
}
|
|
|
|
tasks.named("dispatchGitHubWorkflow") {
|
|
repository {
|
|
owner = "spring-projects"
|
|
name = "spring-security"
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
plugins.withType(JavaPlugin) {
|
|
java {
|
|
sourceCompatibility=JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = "UTF-8"
|
|
options.compilerArgs.add("-parameters")
|
|
}
|
|
}
|
|
|
|
|
|
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
javaCompiler = javaToolchains.compilerFor {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
}
|
|
|
|
if (hasProperty('buildScan')) {
|
|
buildScan {
|
|
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
|
|
termsOfServiceAgree = 'yes'
|
|
}
|
|
}
|
|
|
|
nohttp {
|
|
source.exclude "buildSrc/build/**"
|
|
source.builtBy(project(':spring-security-config').tasks.withType(RncToXsd))
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
s101 {
|
|
configurationDirectory = project.file("etc/s101")
|
|
}
|