buildscript { extra.set("production", (findProperty("prod") ?: findProperty("production") ?: "false") == "true") } plugins { kotlin("js") id("maven-publish") } repositories() // Versions val nodeKtVersion: String by project kotlin { kotlinJsTargets() } dependencies { implementation(kotlin("stdlib-js")) api(rootProject) api("me.kgustave:node-kt:$nodeKtVersion") testImplementation(kotlin("test-js")) } val sourcesJar by tasks.registering(Jar::class) { archiveClassifier.set("sources") from(kotlin.sourceSets.main.get().kotlin) } publishing { publications { create("kotlin") { from(components["kotlin"]) artifact(tasks["sourcesJar"]) pom { defaultPom() } } } } setupPublication()