Update dependencies
This commit is contained in:
parent
30d2778d00
commit
a662ebc0a7
@ -10,18 +10,18 @@ description = "A Result monad for modelling success or failure operations."
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
base
|
base
|
||||||
id("com.github.ben-manes.versions") version "0.28.0"
|
id("com.github.ben-manes.versions") version "0.29.0"
|
||||||
|
|
||||||
kotlin("multiplatform") version "1.3.72" apply false
|
kotlin("multiplatform") version "1.4.0" apply false
|
||||||
id("kotlinx.benchmark") version "0.2.0-dev-8" apply false
|
id("kotlinx.benchmark") version "0.2.0-dev-20" apply false
|
||||||
id("net.researchgate.release") version "2.8.1" apply false
|
id("net.researchgate.release") version "2.8.1" apply false
|
||||||
id("org.jetbrains.dokka") version "0.10.1" apply false
|
id("org.jetbrains.dokka") version "0.10.1" apply false
|
||||||
id("org.jetbrains.kotlin.plugin.allopen") version "1.3.72" apply false
|
id("org.jetbrains.kotlin.plugin.allopen") version "1.4.0" apply false
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType<DependencyUpdatesTask> {
|
tasks.withType<DependencyUpdatesTask> {
|
||||||
rejectVersionIf {
|
rejectVersionIf {
|
||||||
listOf("alpha", "beta", "rc", "cr", "m", "eap", "pr").any {
|
listOf("alpha", "beta", "rc", "cr", "m", "eap", "pr", "dev").any {
|
||||||
candidate.version.contains(it, ignoreCase = true)
|
candidate.version.contains(it, ignoreCase = true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
val ktorVersion = "1.3.2"
|
val ktorVersion = "1.4.0"
|
||||||
|
|
||||||
implementation(project(":kotlin-result"))
|
implementation(project(":kotlin-result"))
|
||||||
implementation(kotlin("stdlib-jdk8"))
|
implementation(kotlin("stdlib-jdk8"))
|
||||||
|
Loading…
Reference in New Issue
Block a user