Skip to content

Commit

Permalink
Clean up http-clients build (possible fix for "still shadow jar") (#1…
Browse files Browse the repository at this point in the history
…2796)

- Remove unused shadowjar plugin and unused method in http-clients build.

On previous builds, a full shadow jar has been published. This update
will potentially "fix" that so we publish only a "shallow jar" instead.
The transitive dependencies from a 'shadow-jar' are not desired.
  • Loading branch information
DanVanAtta committed Jul 29, 2024
1 parent 2d96c12 commit 1587c83
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions http-clients/lobby-client/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
plugins {
id("maven-publish")
id "com.github.johnrengelman.shadow" version "8.1.1"
}

version = System.getenv("JAR_VERSION")
Expand All @@ -13,16 +12,6 @@ dependencies {
testImplementation project(":lib:test-common")
}

def getGitCommitCount = { ->
def stdout = new ByteArrayOutputStream()
exec {
commandLine "git", "rev-list", "--count", "HEAD"
standardOutput = stdout
}
return stdout.toString().trim()
}


publishing {
repositories {
maven {
Expand Down

0 comments on commit 1587c83

Please sign in to comment.