12 lines
158 B
Groovy
12 lines
158 B
Groovy
|
|
plugins {
|
||
|
|
id('application')
|
||
|
|
}
|
||
|
|
|
||
|
|
java {
|
||
|
|
toolchain.languageVersion.set(JavaLanguageVersion.of(@JAVA_VERSION@))
|
||
|
|
}
|
||
|
|
|
||
|
|
application {
|
||
|
|
mainClass = 'Main'
|
||
|
|
}
|