We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d52b9ae commit 93c6b81Copy full SHA for 93c6b81
sandbox/build.gradle.kts
@@ -2,12 +2,11 @@ import common.*
2
import org.gradle.kotlin.dsl.*
3
import tasks.*
4
5
-val enableKmpExec by extra(false)
+val enableKmpExec by extra(true)
6
7
plugins {
8
id("dev.suresh.plugin.root") version "+"
9
id("dev.suresh.plugin.kotlin.mpp") version "+"
10
- application
11
alias(libs.plugins.shadow)
12
}
13
@@ -23,5 +22,3 @@ buildConfig {
23
22
24
25
kotlin { jvmTarget(project) }
26
-
27
-application { mainClass = "MainKt" }
sandbox/src/jvmMain/kotlin/Main.kt renamed to sandbox/src/jvmMain/kotlin/App.kt
@@ -1,3 +1,5 @@
1
+package dev.suresh
+
fun main() {
println("Hello, ${BuildConfig.name}! 🏖")
println("Java: ${BuildConfig.java}, Kotlin: ${BuildConfig.kotlin}")
0 commit comments