Newer
Older
plugins {
id 'java'
id 'idea'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
sourceSets {
main {
java {
srcDir 'src'
}
}
}
repositories {
mavenCentral()
}
dependencies {
wrapper {
distributionType Wrapper.DistributionType.ALL
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
compileJava {
options.compilerArgs << "-Xlint:all"