Glok / glok-demo-client / build.gradle.kts
// glok-demo-client plugins { kotlin("multiplatform") } repositories { mavenCentral() maven { name = "glok" url = uri("https://gitlab.com/api/v4/projects/46354938/packages/maven") } } kotlin { js(IR) { browser() binaries.executable() } sourceSets { val jsMain by getting { dependencies { implementation(project(":glok-model")) implementation(project(":glok-core")) } } } }