16 lines
252 B
Groovy
16 lines
252 B
Groovy
|
plugins {
|
||
|
id 'java-library'
|
||
|
}
|
||
|
|
||
|
group 'org.opensearch'
|
||
|
version '1.0.0-SNAPSHOT'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
tasks.withType(JavaCompile) {
|
||
|
options.compilerArgs += ["--release", targetCompatibility.toString()]
|
||
|
options.encoding = "UTF-8"
|
||
|
}
|