12345678910111213141516171819202122232425262728293031 |
- plugins {
- id 'org.jetbrains.kotlin.jvm' version '1.5.10'
- id 'application'
- }
- group = 'me.stanislav'
- version = '1.0-SNAPSHOT'
- repositories {
- mavenCentral()
- }
- dependencies {
- testImplementation 'org.jetbrains.kotlin:kotlin-test'
- }
- test {
- useJUnitPlatform()
- }
- compileKotlin {
- kotlinOptions.jvmTarget = '1.8'
- }
- compileTestKotlin {
- kotlinOptions.jvmTarget = '1.8'
- }
- application {
- mainClassName = 'MainKt'
- }
|