2020-04-24 02:37:17 +07:00
|
|
|
buildscript {
|
|
|
|
dependencies {
|
|
|
|
classpath 'io.spring.gradle:spring-build-conventions:0.0.31.RELEASE'
|
|
|
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:latest.release"
|
|
|
|
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
maven { url 'https://repo.spring.io/plugins-snapshot' }
|
|
|
|
maven { url 'https://plugins.gradle.org/m2/' }
|
|
|
|
}
|
2020-04-16 03:21:52 +07:00
|
|
|
}
|
|
|
|
|
2020-04-24 02:37:17 +07:00
|
|
|
apply plugin: 'io.spring.convention.root'
|
|
|
|
|
2020-04-24 03:45:34 +07:00
|
|
|
group = 'org.springframework.security.experimental'
|
|
|
|
description = 'Spring Authorization Server'
|
2020-04-16 03:21:52 +07:00
|
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
|
2020-04-19 03:41:05 +07:00
|
|
|
ext['junit-jupiter.version'] = '5.4.0'
|
|
|
|
|
2020-04-16 03:21:52 +07:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2020-04-24 02:37:17 +07:00
|
|
|
dependencyManagementExport.projects = subprojects
|
2020-04-16 03:21:52 +07:00
|
|
|
|
2020-04-24 02:37:17 +07:00
|
|
|
subprojects {
|
|
|
|
plugins.withType(JavaPlugin) {
|
|
|
|
project.sourceCompatibility = '1.8'
|
|
|
|
}
|
2020-04-16 03:21:52 +07:00
|
|
|
}
|