Files
buckpal/build.gradle
2019-06-14 12:47:49 +02:00

30 lines
543 B
Groovy

plugins {
id "io.spring.dependency-management" version "1.0.6.RELEASE"
}
allprojects {
group = 'io.reflectoring.reviewapp'
version = '0.0.1-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
repositories {
jcenter()
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:2.1.5.RELEASE")
}
}
}