Skip to content

Commit

Permalink
fix: avoid eventsocket relocation for module shadow jar (#827)
Browse files Browse the repository at this point in the history
  • Loading branch information
iProdigy committed Jul 31, 2023
1 parent 45feefb commit 8c78266
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions eventsub-websocket/build.gradle.kts
Expand Up @@ -9,6 +9,11 @@ dependencies {
api(project(":twitch4j-client-websocket"))
}

tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
// Avoid com.github.twitch4j.eventsub.socket relocation due to eventsub-common being relocated
relocate("com.github.twitch4j.eventsub.socket", "com.github.twitch4j.eventsub.socket")
}

tasks.javadoc {
options {
title = "Twitch4J (v${version}) - EventSub WebSocket Module"
Expand Down

0 comments on commit 8c78266

Please sign in to comment.