Skip to content
This repository was archived by the owner on Apr 20, 2022. It is now read-only.

Commit 1355072

Browse files
author
InfinityDevFlo
committed
Merge remote-tracking branch 'origin/v2' into v2
2 parents eabcaba + e87d6ee commit 1355072

2 files changed

Lines changed: 13 additions & 6 deletions

File tree

buildSrc/build.gradle.kts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,14 @@ plugins {
44

55
repositories {
66
mavenCentral()
7-
}
7+
}
8+
9+
tasks {
10+
compileKotlin {
11+
kotlinOptions.jvmTarget = "16"
12+
}
13+
14+
withType<JavaCompile> {
15+
this.options.encoding = "UTF-8"
16+
}
17+
}

buildSrc/src/main/kotlin/Properties.kt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,7 @@ object Properties {
5959
Pair("stdlib", "org.jetbrains.kotlin:kotlin-stdlib:%version%")
6060
)
6161
it["kotlinx"] = mutableMapOf(
62-
Pair("coroutines-core", "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
63-
)
64-
it["kotlinx"] = mutableMapOf(
65-
Pair("coroutines-core", "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
62+
Pair("coroutines-core", "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1")
6663
)
6764
it["database"] = mutableMapOf(
6865
Pair("mongo", "org.mongodb:mongodb-driver-sync:4.3.0")
@@ -73,4 +70,4 @@ object Properties {
7370
}
7471

7572

76-
}
73+
}

0 commit comments

Comments
 (0)