You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
592 B
18 lines
592 B
buildscript { |
|
dependencies { |
|
classpath 'io.spring.gradle:spring-gradle-build-conventions:1.0-SNAPSHOT' |
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion" |
|
} |
|
repositories { |
|
maven { url 'https://repo.spring.io/libs-snapshot' } |
|
maven { url 'https://repo.spring.io/plugins-release' } |
|
} |
|
} |
|
apply plugin: 'io.spring.convention.root' |
|
|
|
group = 'org.springframework.security' |
|
description = 'Spring Security' |
|
|
|
ext.snapshotBuild = version.contains("SNAPSHOT") |
|
ext.releaseBuild = version.contains("SNAPSHOT") |
|
ext.milestoneBuild = !(snapshotBuild || releaseBuild)
|
|
|