mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
29 lines
No EOL
475 B
Groovy
29 lines
No EOL
475 B
Groovy
allprojects {
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url "http://clojars.org/repo/"
|
|
}
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
|
|
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
|
|
}
|
|
} |