1
0
mirror of synced 2026-05-22 13:23:17 +00:00
Files
spring-security/build.gradle
T

33 lines
929 B
Groovy
Raw Normal View History

2013-06-20 11:40:54 -05:00
buildscript {
2015-03-23 11:14:26 -05:00
dependencies {
classpath 'io.spring.gradle:spring-build-conventions:0.0.23.RELEASE'
2017-03-28 15:45:30 -05:00
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
2019-03-28 11:08:57 -05:00
classpath 'io.spring.nohttp:nohttp-gradle:0.0.1.BUILD-SNAPSHOT'
2015-03-23 11:14:26 -05:00
}
repositories {
maven { url 'https://repo.spring.io/plugins-snapshot' }
2018-10-15 17:05:40 -06:00
maven { url 'https://plugins.gradle.org/m2/' }
2015-03-23 11:14:26 -05:00
}
}
2019-03-28 11:08:57 -05:00
apply plugin: 'io.spring.nohttp'
2017-03-28 15:45:30 -05:00
apply plugin: 'io.spring.convention.root'
2017-03-28 15:45:30 -05:00
group = 'org.springframework.security'
description = 'Spring Security'
2010-07-07 22:40:17 +01:00
2017-03-28 15:45:30 -05:00
ext.snapshotBuild = version.contains("SNAPSHOT")
ext.releaseBuild = version.contains("SNAPSHOT")
ext.milestoneBuild = !(snapshotBuild || releaseBuild)
2017-05-08 11:56:26 -05:00
dependencyManagementExport.projects = subprojects.findAll { !it.name.contains('-boot') }
2018-02-01 11:56:23 +01:00
2019-03-28 11:08:57 -05:00
repositories {
maven { url 'https://repo.spring.io/libs-snapshot' }
}
2018-03-26 20:01:40 -05:00
subprojects {
plugins.withType(JavaPlugin) {
project.sourceCompatibility='1.8'
}
}