fixed inner loop & added smart REPL

This commit is contained in:
2026-03-19 13:34:48 +03:00
parent f41ecfbd2f
commit 60ca2d38f9
29 changed files with 249 additions and 81 deletions
+11 -2
View File
@@ -15,8 +15,9 @@ repositories {
dependencies {
implementation(kotlin("stdlib"))
implementation("io.github.oshai:kotlin-logging-jvm:7.0.3")
implementation("org.slf4j:slf4j-simple:2.0.3")
implementation("io.github.microutils:kotlin-logging-jvm:3.0.5")
implementation("ch.qos.logback:logback-classic:1.5.7")
implementation("org.jline:jline:3.27.1")
testImplementation(kotlin("test"))
testImplementation("org.junit.jupiter:junit-jupiter:5.11.3")
@@ -26,6 +27,9 @@ dependencies {
application {
mainClass.set("MainKt")
applicationDefaultJvmArgs = listOf(
"--enable-native-access=ALL-UNNAMED"
)
}
kotlin {
@@ -48,3 +52,8 @@ tasks.named<ShadowJar>("shadowJar") {
tasks.named("build") {
dependsOn("shadowJar")
}
// да, я ленивый
tasks.withType<JavaExec> {
jvmArgs("--enable-native-access=ALL-UNNAMED")
}