spring-security/build.gradle

113 lines
3.0 KiB
Groovy
Raw Normal View History

2013-06-20 12:40:54 -04:00
buildscript {
2015-03-23 12:14:26 -04:00
dependencies {
classpath "io.spring.javaformat:spring-javaformat-gradle-plugin:$springJavaformatVersion"
classpath 'io.spring.nohttp:nohttp-gradle:0.0.5.RELEASE'
classpath "io.freefair.gradle:aspectj-plugin:5.0.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
2015-03-23 12:14:26 -04:00
}
repositories {
maven { url 'https://repo.spring.io/plugins-snapshot' }
maven { url 'https://plugins.gradle.org/m2/' }
2015-03-23 12:14:26 -04: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'
apply plugin: 'io.spring.convention.root'
apply plugin: 'org.jetbrains.kotlin.jvm'
apply plugin: 'org.springframework.security.update-dependencies'
group = 'org.springframework.security'
description = 'Spring Security'
2010-07-07 17:40:17 -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 {
mavenCentral()
2019-03-28 12:08:57 -04:00
}
updateDependenciesSettings {
gitHub {
organization = "rwinch"
repository = "spring-security"
}
addFiles({
return [
project.file("buildSrc/src/main/java/io/spring/gradle/convention/AsciidoctorConventionPlugin.java"),
project.file("buildSrc/src/main/groovy/io/spring/gradle/convention/CheckstylePlugin.groovy")
]
})
dependencyExcludes {
majorVersionBump()
alphaBetaVersions()
releaseCandidatesVersions()
milestoneVersions()
snapshotVersions()
addRule { components ->
components.withModule("commons-codec:commons-codec") { selection ->
ModuleComponentIdentifier candidate = selection.getCandidate();
if (!candidate.getVersion().equals(selection.getCurrentVersion())) {
selection.reject("commons-codec updates break saml tests");
}
}
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");
}
}
}
}
}
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"
2019-08-12 17:19:03 -04:00
}
2018-03-26 21:01:40 -04: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 {
checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:$springJavaformatVersion"
}
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-09-30 10:20:12 -04:00
if (hasProperty('buildScan')) {
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
}
}
nohttp {
allowlistFile = project.file("etc/nohttp/allowlist.lines")
2021-04-02 14:13:07 -04:00
source.exclude "buildSrc/build/**"
}