Blame view
build.gradle
410 Bytes
ca62d17fb create project |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
plugins { id 'java' id 'org.jetbrains.kotlin.jvm' version '1.3.72' } group 'marivisu' version '1.0-SNAPSHOT' repositories { mavenCentral() } dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" testCompile group: 'junit', name: 'junit', version: '4.12' } |
ca62d17fb create project |
17 18 19 20 21 22 23 |
compileKotlin { kotlinOptions.jvmTarget = "1.8" } compileTestKotlin { kotlinOptions.jvmTarget = "1.8" } |