Launcher/build.gradle

34 lines
671 B
Groovy
Raw Normal View History

configure(subprojects.findAll { it.name != 'modules' && it.name != 'Radon' }) {
2018-09-17 10:07:32 +03:00
apply plugin: 'idea'
apply plugin: 'eclipse'
2019-01-09 11:29:54 +03:00
apply plugin: 'java'
2018-09-17 10:07:32 +03:00
repositories {
mavenCentral()
maven { url 'http://oss.sonatype.org/content/groups/public' }
2018-09-17 10:07:32 +03:00
maven {
url "http://clojars.org/repo/"
}
}
configurations {
apt
aptCompileOnly
aptOnly
aptOnly.extendsFrom apt, aptCompileOnly
compile.extendsFrom apt
compileOnly.extendsFrom aptCompileOnly
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
options.annotationProcessorPath = configurations.aptOnly
}
}
wrapper {
distributionType = Wrapper.DistributionType.ALL
}
defaultTasks 'build'