You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
154 lines
3.7 KiB
154 lines
3.7 KiB
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 { |
|
gradlePluginPortal() |
|
} |
|
} |
|
|
|
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' |
|
apply plugin: 'org.springframework.security.check-expected-branch-version' |
|
|
|
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) { |
|
project.sourceCompatibility='1.8' |
|
} |
|
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(8) |
|
} |
|
} |
|
} |
|
|
|
develocity { |
|
buildScan { |
|
termsOfUseUrl = 'https://gradle.com/help/legal-terms-of-use' |
|
termsOfUseAgree = 'yes' |
|
} |
|
} |
|
|
|
nohttp { |
|
source.exclude "buildSrc/build/**" |
|
source.builtBy(project(':spring-security-config').tasks.withType(RncToXsd)) |
|
} |
|
|
|
tasks.register('cloneSamples', IncludeRepoTask) { |
|
repository = 'spring-projects/spring-security-samples' |
|
ref = samplesBranch |
|
outputDirectory = project.hasProperty("cloneOutputDirectory") ? project.file("$cloneOutputDirectory") : project.file("build/samples") |
|
} |
|
|
|
s101 { |
|
repository = 'https://structure101.com/binaries/latest' |
|
configurationDirectory = project.file("etc/s101") |
|
}
|
|
|