32 lines
322 B
Groovy
32 lines
322 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
}
|
|
|
|
version '0.1'
|
|
|
|
java {
|
|
sourceCompatibility = 11
|
|
targetCompatibility = 11
|
|
}
|
|
|
|
compileJava {
|
|
options.compilerArgs << '-Xlint:unchecked'
|
|
options.deprecation = true
|
|
}
|
|
|
|
application {
|
|
mainClass = "Main"
|
|
}
|
|
|
|
|
|
wrapper {
|
|
gradleVersion = "7.2"
|
|
}
|