14 lines
248 B
Groovy
14 lines
248 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes "Automatic-Module-Name" : "net.woggioni.executable.jar"
|
|
}
|
|
} |