GauthierPLM
07/01/2019, 3:27 AMdevelopmentOnly() and annotationProcessor() work?
val developmentOnly by configurations.creating
configurations {
runtimeClasspath {
extendsFrom(developmentOnly)
}
compileOnly {
extendsFrom(annotationProcessor.get())
}
}