Update dependencies.

This commit is contained in:
Oliver Rümpelein 2020-11-12 13:27:08 +01:00
parent 959efda46f
commit 96522a2b09

View file

@ -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<MavenPublication>("myPlatform") {
create<MavenPublication>("NativeBom") {
from(components["javaPlatform"])
}
}
}
inline fun <reified T> getFromProperties(name: String): T = project.properties[name] as T
inline fun <reified T> getFromExtra(name: String): T = extra[name] as T