spring-security/build.gradle

34 lines
940 B
Groovy
Raw Normal View History

2013-06-21 00:40:54 +08:00
buildscript {
2015-03-24 00:14:26 +08:00
dependencies {
classpath 'io.spring.gradle:spring-build-conventions:0.0.23.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:3.8.4"
2015-03-24 00:14:26 +08:00
}
repositories {
maven { url 'https://repo.spring.io/plugins-snapshot' }
maven { url 'https://plugins.gradle.org/m2/' }
2015-03-24 00:14:26 +08:00
}
}
2019-03-29 00:08:57 +08:00
apply plugin: 'io.spring.nohttp'
apply plugin: 'io.spring.convention.root'
group = 'org.springframework.security'
description = 'Spring Security'
2010-07-08 05:40:17 +08:00
ext.snapshotBuild = version.contains("SNAPSHOT")
ext.releaseBuild = version.contains("SNAPSHOT")
ext.milestoneBuild = !(snapshotBuild || releaseBuild)
2017-05-09 00:56:26 +08:00
dependencyManagementExport.projects = subprojects.findAll { !it.name.contains('-boot') }
2018-02-01 18:56:23 +08:00
2019-03-29 00:08:57 +08:00
repositories {
mavenCentral()
2019-03-29 00:08:57 +08:00
}
2018-03-27 09:01:40 +08:00
subprojects {
plugins.withType(JavaPlugin) {
project.sourceCompatibility='1.8'
}
}