Skip to content

Commit

Permalink
chore: limit shadowJar publication to twitch4j, chat, helix, pubsub, …
Browse files Browse the repository at this point in the history
…eventsub-websocket (#826)
  • Loading branch information
PhilippHeuer committed Jul 31, 2023
1 parent e858563 commit 45feefb
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 10 deletions.
1 change: 0 additions & 1 deletion build.gradle.kts
Expand Up @@ -39,7 +39,6 @@ subprojects {
apply(plugin = "maven-publish")
apply(plugin = "io.freefair.lombok")
apply(plugin = "me.champeau.jmh")
apply(plugin = "com.github.johnrengelman.shadow")

if (enableManifest) {
apply(plugin = "com.coditory.manifest")
Expand Down
5 changes: 4 additions & 1 deletion chat/build.gradle.kts
@@ -1,4 +1,7 @@
// In this section you declare the dependencies for your production and test code
plugins {
id("com.github.johnrengelman.shadow")
}

dependencies {
// Rate Limiting
api(group = "com.bucket4j", name = "bucket4j_jdk8-core")
Expand Down
1 change: 0 additions & 1 deletion client-websocket/build.gradle.kts
@@ -1,4 +1,3 @@
// In this section you declare the dependencies for your production and test code
dependencies {
// Common
api(project(":twitch4j-util"))
Expand Down
1 change: 0 additions & 1 deletion eventsub-common/build.gradle.kts
@@ -1,4 +1,3 @@
// In this section you declare the dependencies for your production and test code
dependencies {
// Jackson (JSON)
api(group = "com.fasterxml.jackson.core", name = "jackson-databind")
Expand Down
4 changes: 4 additions & 0 deletions eventsub-websocket/build.gradle.kts
@@ -1,3 +1,7 @@
plugins {
id("com.github.johnrengelman.shadow")
}

dependencies {
// Twitch4J Modules
api(project(":twitch4j-eventsub-common"))
Expand Down
5 changes: 4 additions & 1 deletion pubsub/build.gradle.kts
@@ -1,4 +1,7 @@
// In this section you declare the dependencies for your production and test code
plugins {
id("com.github.johnrengelman.shadow")
}

dependencies {
// Jackson (JSON)
api(group = "com.fasterxml.jackson.datatype", name = "jackson-datatype-jsr310")
Expand Down
1 change: 0 additions & 1 deletion rest-extensions/build.gradle.kts
@@ -1,4 +1,3 @@
// In this section you declare the dependencies for your production and test code
dependencies {
// HTTP Client
api(group = "io.github.openfeign", name = "feign-okhttp")
Expand Down
5 changes: 4 additions & 1 deletion rest-helix/build.gradle.kts
@@ -1,4 +1,7 @@
// In this section you declare the dependencies for your production and test code
plugins {
id("com.github.johnrengelman.shadow")
}

dependencies {
// HTTP Client
api(group = "io.github.openfeign", name = "feign-okhttp")
Expand Down
1 change: 0 additions & 1 deletion rest-kraken/build.gradle.kts
@@ -1,4 +1,3 @@
// In this section you declare the dependencies for your production and test code
dependencies {
// HTTP Client
api(group = "io.github.openfeign", name = "feign-okhttp")
Expand Down
1 change: 0 additions & 1 deletion rest-tmi/build.gradle.kts
@@ -1,4 +1,3 @@
// In this section you declare the dependencies for your production and test code
dependencies {
// HTTP Client
api(group = "io.github.openfeign", name = "feign-okhttp")
Expand Down
5 changes: 4 additions & 1 deletion twitch4j/build.gradle.kts
@@ -1,4 +1,7 @@
// In this section you declare the dependencies for your production and test code
plugins {
id("com.github.johnrengelman.shadow")
}

dependencies {
// Twitch4J Modules
val thatProject = project
Expand Down

0 comments on commit 45feefb

Please sign in to comment.