Skip to content

Commit

Permalink
Bump NBT-api
Browse files Browse the repository at this point in the history
  • Loading branch information
eRHaDev committed Apr 3, 2024
1 parent e618b0e commit 74db40d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repositories {

dependencies {
compileOnly "org.spigotmc:spigot-api:1.8.8-R0.1-SNAPSHOT"
implementation "de.tr7zw:item-nbt-api:2.11.3"
implementation "de.tr7zw:item-nbt-api:2.12.3"

compileOnly "org.jetbrains:annotations:24.0.1"
compileOnly "org.projectlombok:lombok:1.18.22"
Expand All @@ -45,6 +45,11 @@ shadowJar {
archiveClassifier = null
}

tasks.register("sourcesJar", Jar) {
archiveClassifier = "sources"
from(sourceSets.main.allSource)
}

publishing {
repositories {
maven {
Expand All @@ -69,6 +74,7 @@ publishing {
version = this.version

from(project.shadow.component(publication))
artifact(tasks.sourcesJar)
}
}
}

0 comments on commit 74db40d

Please sign in to comment.