diff --git a/build.gradle.kts b/build.gradle.kts index 7d6bca7f8..a998706b8 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", @@ -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.10.0") - api(group = "com.github.philippheuer.events4j", name = "events4j-handler-simple", version = "0.10.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") diff --git a/kotlin/build.gradle.kts b/kotlin/build.gradle.kts index 0943c92ea..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.10.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")