diff --git a/build.gradle.kts b/build.gradle.kts index c12ea5f..7a06802 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,11 +1,11 @@ buildscript { extra.apply { - set("coroutinesVersion", "1.3.9") + set("coroutinesVersion", "1.4.1") set("jsoupVersion", "1.13.1") - set("kotestVersion", "4.2.3") + set("kotestVersion", "4.3.1") set("kotlinxHtmlVersion", "0.7.2") set("cliktVersion", "3.0.1") - set("kotlinVersion", "1.4.10") + set("kotlinVersion", "1.4.20-RC") } } @@ -15,7 +15,7 @@ plugins { } group = "de.pheerai" -version = "0.0.1-SNAPSHOT" +version = "0.0.2-SNAPSHOT" repositories { jcenter() @@ -47,15 +47,13 @@ dependencies { api("io.kotest", "kotest-assertions-core-jvm", getFromExtra("kotestVersion")) } - publishing { publications { - create("myPlatform") { + create("NativeBom") { from(components["javaPlatform"]) } } } - inline fun getFromProperties(name: String): T = project.properties[name] as T inline fun getFromExtra(name: String): T = extra[name] as T