mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-02-22 06:17:37 +00:00
The `io.freefair.aspectj.post-compile-weaving` plugin v5.0.1 includes [a fix](https://github.com/freefair/gradle-plugins/pull/213) that allows all tasks for `./gradlew classes` to be marked as `UP-TO-DATE` following an initial `./gradlew clean classes`. Without this fix, any compile task that is enhanced by the `io.freefair.aspectj.post-compile-weaving` plugin will incorrectly have compilation outputs configured as a _task input_, resulting in the task being out of date following a `clean compile`.
42 lines
1.1 KiB
Groovy
42 lines
1.1 KiB
Groovy
buildscript {
|
|
dependencies {
|
|
classpath 'io.spring.gradle:spring-build-conventions:0.0.31.RELEASE'
|
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
|
|
classpath 'io.spring.nohttp:nohttp-gradle:0.0.2.RELEASE'
|
|
classpath "io.freefair.gradle:aspectj-plugin:5.0.1"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
|
}
|
|
repositories {
|
|
maven { url 'https://repo.spring.io/plugins-snapshot' }
|
|
maven { url 'https://plugins.gradle.org/m2/' }
|
|
}
|
|
}
|
|
|
|
apply plugin: 'io.spring.nohttp'
|
|
apply plugin: 'locks'
|
|
apply plugin: 'io.spring.convention.root'
|
|
apply plugin: 'org.jetbrains.kotlin.jvm'
|
|
|
|
group = 'org.springframework.security'
|
|
description = 'Spring Security'
|
|
|
|
ext.snapshotBuild = version.contains("SNAPSHOT")
|
|
ext.releaseBuild = version.contains("SNAPSHOT")
|
|
ext.milestoneBuild = !(snapshotBuild || releaseBuild)
|
|
|
|
dependencyManagementExport.projects = subprojects.findAll { !it.name.contains('-boot') }
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
subprojects {
|
|
plugins.withType(JavaPlugin) {
|
|
project.sourceCompatibility='1.8'
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = "UTF-8"
|
|
}
|
|
}
|