spring-session/build.gradle
Marcus Hert Da Coregio a704388786 Remove unused plugin
2024-02-05 08:42:51 -03:00

69 lines
1.7 KiB
Groovy

buildscript {
ext {
releaseBuild = version.endsWith('RELEASE')
snapshotBuild = version.endsWith('SNAPSHOT')
milestoneBuild = !(releaseBuild || snapshotBuild)
}
repositories {
gradlePluginPortal()
maven { url 'https://repo.spring.io/plugins-release/' }
maven {
url = 'https://repo.spring.io/plugins-snapshot'
if (project.hasProperty('artifactoryUsername')) {
credentials {
username "$artifactoryUsername"
password "$artifactoryPassword"
}
}
}
}
dependencies {
classpath libs.org.springframework.boot.spring.boot.gradle.plugin
}
}
plugins {
id "com.github.ben-manes.versions"
}
apply plugin: 'io.spring.convention.root'
apply plugin: 'io.spring.security.release'
group = 'org.springframework.session'
description = 'Spring Session'
subprojects {
apply plugin: 'io.spring.javaformat'
plugins.withType(JavaPlugin) {
sourceCompatibility = JavaVersion.VERSION_17
}
tasks.withType(Test) {
useJUnitPlatform()
}
// Spring Framework 6.1 requires -parameters to be able to introspect method parameter names
tasks.withType(JavaCompile) {
options.compilerArgs.add("-parameters")
}
}
nohttp {
source.exclude "buildSrc/build/**"
source.exclude "spring-session-docs/.gradle/nodejs/**"
source.exclude "spring-session-docs/modules/ROOT/examples/**/build/**"
}
springRelease {
repositoryOwner = "spring-projects"
repositoryName = "spring-session"
weekOfMonth = 3
dayOfWeek = 2
referenceDocUrl = "https://docs.spring.io/spring-session/reference/{version}/index.html"
apiDocUrl = "https://docs.spring.io/spring-session/docs/{version}/api/"
replaceSnapshotVersionInReferenceDocUrl = true
}