Update dependencies.
This commit is contained in:
parent
959efda46f
commit
96522a2b09
1 changed files with 5 additions and 7 deletions
|
@ -1,11 +1,11 @@
|
||||||
buildscript {
|
buildscript {
|
||||||
extra.apply {
|
extra.apply {
|
||||||
set("coroutinesVersion", "1.3.9")
|
set("coroutinesVersion", "1.4.1")
|
||||||
set("jsoupVersion", "1.13.1")
|
set("jsoupVersion", "1.13.1")
|
||||||
set("kotestVersion", "4.2.3")
|
set("kotestVersion", "4.3.1")
|
||||||
set("kotlinxHtmlVersion", "0.7.2")
|
set("kotlinxHtmlVersion", "0.7.2")
|
||||||
set("cliktVersion", "3.0.1")
|
set("cliktVersion", "3.0.1")
|
||||||
set("kotlinVersion", "1.4.10")
|
set("kotlinVersion", "1.4.20-RC")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "de.pheerai"
|
group = "de.pheerai"
|
||||||
version = "0.0.1-SNAPSHOT"
|
version = "0.0.2-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
jcenter()
|
jcenter()
|
||||||
|
@ -47,15 +47,13 @@ dependencies {
|
||||||
api("io.kotest", "kotest-assertions-core-jvm", getFromExtra("kotestVersion"))
|
api("io.kotest", "kotest-assertions-core-jvm", getFromExtra("kotestVersion"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
create<MavenPublication>("myPlatform") {
|
create<MavenPublication>("NativeBom") {
|
||||||
from(components["javaPlatform"])
|
from(components["javaPlatform"])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
inline fun <reified T> getFromProperties(name: String): T = project.properties[name] as T
|
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
|
inline fun <reified T> getFromExtra(name: String): T = extra[name] as T
|
||||||
|
|
Loading…
Reference in a new issue