30 lines
543 B
Groovy
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")
|
|
}
|
|
}
|
|
|
|
}
|