From 066d2284599f883a16ad296607b7958083856adc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 5 Sep 2022 20:07:37 +0000 Subject: [PATCH 1/3] chore(deps): update com.github.philippheuer.events4j to v0.11.0 --- build.gradle.kts | 8 ++++---- kotlin/build.gradle.kts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 7d6bca7f8..7a4ea8564 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -27,8 +27,8 @@ allprojects { "https://javadoc.io/doc/commons-configuration/commons-configuration/1.10", "https://javadoc.io/doc/com.bucket4j/bucket4j_jdk8-core/8.1.0", // "https://javadoc.io/doc/com.squareup.okhttp3/okhttp/4.9.3", // blocked by https://github.com/square/okhttp/issues/6450 - "https://javadoc.io/doc/com.github.philippheuer.events4j/events4j-core/0.10.0", - "https://javadoc.io/doc/com.github.philippheuer.events4j/events4j-handler-simple/0.10.0", + "https://javadoc.io/doc/com.github.philippheuer.events4j/events4j-core/0.11.0", + "https://javadoc.io/doc/com.github.philippheuer.events4j/events4j-handler-simple/0.11.0", "https://javadoc.io/doc/com.github.philippheuer.credentialmanager/credentialmanager/0.1.4", "https://javadoc.io/doc/io.github.openfeign/feign-slf4j/11.9.1", "https://javadoc.io/doc/io.github.openfeign/feign-okhttp/11.9.1", @@ -88,8 +88,8 @@ subprojects { api(group = "com.squareup.okhttp3", name = "okhttp", version = "4.9.3") // Event Dispatcher - api(group = "com.github.philippheuer.events4j", name = "events4j-core", version = "0.10.0") - api(group = "com.github.philippheuer.events4j", name = "events4j-handler-simple", version = "0.10.0") + api(group = "com.github.philippheuer.events4j", name = "events4j-core", version = "0.11.0") + api(group = "com.github.philippheuer.events4j", name = "events4j-handler-simple", version = "0.11.0") // Credential Manager api(group = "com.github.philippheuer.credentialmanager", name = "credentialmanager", version = "0.1.4") diff --git a/kotlin/build.gradle.kts b/kotlin/build.gradle.kts index 0943c92ea..33dd83b47 100644 --- a/kotlin/build.gradle.kts +++ b/kotlin/build.gradle.kts @@ -10,7 +10,7 @@ dependencies { // This shouldn't be an issue as most, if not all, code are extension functions. compileOnly(project(":twitch4j")) - api(group = "com.github.philippheuer.events4j", name = "events4j-kotlin", version = "0.10.0") + api(group = "com.github.philippheuer.events4j", name = "events4j-kotlin", version = "0.11.0") // Kotlin coroutines api(group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version = "1.6.4") From 1e97ee62fd1666fc45f371bb4fc8d21771de3bdf Mon Sep 17 00:00:00 2001 From: Philipp Heuer Date: Mon, 5 Sep 2022 22:59:59 +0200 Subject: [PATCH 2/3] chore: use events4j-bom --- build.gradle.kts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 7a4ea8564..a998706b8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -87,10 +87,6 @@ subprojects { // HTTP api(group = "com.squareup.okhttp3", name = "okhttp", version = "4.9.3") - // Event Dispatcher - api(group = "com.github.philippheuer.events4j", name = "events4j-core", version = "0.11.0") - api(group = "com.github.philippheuer.events4j", name = "events4j-handler-simple", version = "0.11.0") - // Credential Manager api(group = "com.github.philippheuer.credentialmanager", name = "credentialmanager", version = "0.1.4") @@ -125,6 +121,9 @@ subprojects { // Cache BOM api(platform("io.github.xanthic.cache:cache-bom:0.1.1")) + // Events4J BOM + api(platform("com.github.philippheuer.events4j:events4j-bom:0.11.0")) + // Logging api(group = "org.slf4j", name = "slf4j-api", version = "1.7.36") From d80c22efd2be908a7c0a8657bf7120f9a0280ea0 Mon Sep 17 00:00:00 2001 From: Philipp Heuer Date: Mon, 5 Sep 2022 23:03:07 +0200 Subject: [PATCH 3/3] chore: remove events4j version in kotlin module --- kotlin/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin/build.gradle.kts b/kotlin/build.gradle.kts index 33dd83b47..ead07e8a1 100644 --- a/kotlin/build.gradle.kts +++ b/kotlin/build.gradle.kts @@ -10,7 +10,7 @@ dependencies { // This shouldn't be an issue as most, if not all, code are extension functions. compileOnly(project(":twitch4j")) - api(group = "com.github.philippheuer.events4j", name = "events4j-kotlin", version = "0.11.0") + api(group = "com.github.philippheuer.events4j", name = "events4j-kotlin") // Kotlin coroutines api(group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version = "1.6.4")