Skip to content

Commit

Permalink
3.6.1.0
Browse files Browse the repository at this point in the history
-Update shadow gradle plugin (then fixed build)
-Update KamiCommonNMS (which also updated shadow)

Took 5 minutes
  • Loading branch information
Jake-Moore committed Sep 24, 2024
1 parent fabfe10 commit 261106f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@Suppress("PropertyName")
var VERSION = "3.6.0.9"
var VERSION = "3.6.1.0"

plugins { // needed for the allprojects section to work
id("java")
Expand Down
3 changes: 2 additions & 1 deletion spigot-jar/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ dependencies {
tasks {
publish.get().dependsOn(build.get())
build.get().dependsOn(shadowJar)
shadowJar.get().dependsOn(jar)

shadowJar {
archiveClassifier.set("")
Expand Down Expand Up @@ -98,7 +99,7 @@ publishing {
groupId = rootProject.group.toString()
artifactId = project.name
version = rootProject.version.toString()
project.extensions.getByType<com.github.jengelman.gradle.plugins.shadow.ShadowExtension>().component(this)
from(components["shadow"])
}
}

Expand Down
2 changes: 1 addition & 1 deletion spigot-utils/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

dependencies {
// Add NMS library from KamiCommonNMS
api("com.kamikazejam.kamicommon:spigot-nms:1.0.6")
api("com.kamikazejam.kamicommon:spigot-nms:1.0.7")
api(project(":standalone-utils"))
api(project(":shared-utils"))

Expand Down

0 comments on commit 261106f

Please sign in to comment.