spring-authorization-server/build.gradle
Joerg Bellmann fa5c3510a9 Add JwkSet endpoint as filter
Fixes gh-2
2020-05-17 21:00:26 -04:00

32 lines
695 B
Groovy

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/' }
}
}
apply plugin: 'io.spring.convention.root'
group = 'org.springframework.security.experimental'
description = 'Spring Authorization Server'
version = '0.0.1-SNAPSHOT'
ext['junit-jupiter.version'] = '5.4.0'
repositories {
mavenCentral()
}
dependencyManagementExport.projects = subprojects
subprojects {
plugins.withType(JavaPlugin) {
project.sourceCompatibility = '1.8'
}
}