Skip to content

Commit 93c6b81

Browse files
committed
chore: remove app plugin for kotlin 2.1.20-RC
1 parent d52b9ae commit 93c6b81

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

sandbox/build.gradle.kts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ import common.*
22
import org.gradle.kotlin.dsl.*
33
import tasks.*
44

5-
val enableKmpExec by extra(false)
5+
val enableKmpExec by extra(true)
66

77
plugins {
88
id("dev.suresh.plugin.root") version "+"
99
id("dev.suresh.plugin.kotlin.mpp") version "+"
10-
application
1110
alias(libs.plugins.shadow)
1211
}
1312

@@ -23,5 +22,3 @@ buildConfig {
2322
}
2423

2524
kotlin { jvmTarget(project) }
26-
27-
application { mainClass = "MainKt" }

sandbox/src/jvmMain/kotlin/Main.kt renamed to sandbox/src/jvmMain/kotlin/App.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
package dev.suresh
2+
13
fun main() {
24
println("Hello, ${BuildConfig.name}! 🏖")
35
println("Java: ${BuildConfig.java}, Kotlin: ${BuildConfig.kotlin}")

0 commit comments

Comments
 (0)