mirror of https://github.com/apache/lucene.git
12 lines
243 B
Groovy
12 lines
243 B
Groovy
|
// Configure Java project defaults.
|
||
|
|
||
|
allprojects {
|
||
|
plugins.withType(JavaPlugin) {
|
||
|
sourceCompatibility = "11"
|
||
|
targetCompatibility = "11"
|
||
|
|
||
|
compileJava.options.encoding = "UTF-8"
|
||
|
compileTestJava.options.encoding = "UTF-8"
|
||
|
}
|
||
|
}
|