8 lines
210 B
Groovy
8 lines
210 B
Groovy
archivesBaseName = "NoWallOverlay-1.16"
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
it.options.release.set(8)
|
|
}
|