Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import com.github.jengelman.gradle.plugins.shadow.ShadowJavaPlugin.Companion.sha
import kotlinx.validation.KotlinApiBuildTask

plugins {
id("io.papermc.paperweight.userdev") version "2.0.0-beta.14" apply false
id("io.papermc.paperweight.userdev") version "2.0.0-beta.16" apply false
id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.17.0"
// alias(libs.plugins.dokka)
}
Expand Down
5 changes: 4 additions & 1 deletion buildSrc/src/main/kotlin/core-convention.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ extensions.configure<KotlinJvmProjectExtension> {

java {
withSourcesJar()
withJavadocJar()

if (project.name != "surf-api-bukkit-plugin-test") {
withJavadocJar()
}
}

publishing {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ commandapi-velocity-kotlin = { module = "dev.jorel:commandapi-velocity-kotlin",
# Scoreboard Library
scoreboard-library-api = { module = "net.megavex:scoreboard-library-api", version.ref = "scoreboard-library" }
scoreboard-library-implementation = { module = "net.megavex:scoreboard-library-implementation", version.ref = "scoreboard-library-implementation" }
scoreboard-library-modern = { module = "net.megavex:scoreboard-library-modern", version.ref = "scoreboard-library-modern" }
scoreboard-library-modern = { module = "net.megavex:scoreboard-library-packetevents", version.ref = "scoreboard-library-modern" }

# Adventure
adventure-api = { module = "net.kyori:adventure-api", version.ref = "adventure-api" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ tasks {
hangar("CommandAPI", "9.7.0")
}
}
}
}
4 changes: 4 additions & 0 deletions surf-api-bukkit/surf-api-bukkit-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ paper {
}
}

configurations.compileClasspath {
exclude(group = "org.spigotmc", module = "spigot-api")
}

/**
* Registers a soft dependency.
*
Expand Down