aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authortherealbush <therealbush@users.noreply.github.com>2022-04-24 13:08:35 -0700
committertherealbush <therealbush@users.noreply.github.com>2022-04-24 13:08:35 -0700
commit50d79fdf2bc980a68e146a0cdd603658ee642fb1 (patch)
tree347c44fb699e68d04b01bfa08227596e7fa1ca5a /build.gradle.kts
parentf3c07f1525a03f7278a8b431b2e0fbd2595c3738 (diff)
downloadeventbus-kotlin-50d79fdf2bc980a68e146a0cdd603658ee642fb1.tar.gz
eventbus-kotlin-50d79fdf2bc980a68e146a0cdd603658ee642fb1.tar.bz2
eventbus-kotlin-50d79fdf2bc980a68e146a0cdd603658ee642fb1.zip
explitly declared transitive dependencies, made eventbus open for object singletons
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index e57d0c5..ad8a1e1 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -14,12 +14,12 @@ repositories.mavenCentral()
dependencies {
testImplementation(kotlin("test"))
-
+
implementation("org.apache.logging.log4j:log4j-core:2.15.0")
- // Additional Kotlin libraries required for some features
implementation(kotlin("reflect", "1.6.20"))
- implementation(kotlin("coroutines-core", "1.6.1"))
+ implementation(kotlin("stdlib-jdk8", "1.6.20"))
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1")
}
java {