Skip to content

Commit

Permalink
Jar publish fixes (#12515)
Browse files Browse the repository at this point in the history
More fine tuning, set classifier to empty
so that the publish jar does not contain a '*-all.jar'
but instead contains a jar file named simply '*.jar'
  • Loading branch information
DanVanAtta committed Apr 15, 2024
1 parent ccbc709 commit 7cba79e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions http-clients/lobby-client/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("maven-publish")
id "com.github.johnrengelman.shadow" version "7.1.2"
id "com.github.johnrengelman.shadow" version "8.1.1"
}

dependencies {
Expand All @@ -27,7 +27,8 @@ def getGitCommitCount = { ->
}

shadowJar {
version = "0." + getGitCommitCount()
archiveVersion = "0." + getGitCommitCount()
archiveClassifier = ""
}

publishing {
Expand Down

0 comments on commit 7cba79e

Please sign in to comment.