Skip to content
Open
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
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ dependencies {
// compile-only: the proxy plugin is optional, and operators should test
// against their production Velocity build. If API breaks occur, pin to a
// specific build number (e.g. 3.5.0-SNAPSHOT-599).
compileOnly("com.velocitypowered:velocity-api:3.5.0-SNAPSHOT")
compileOnly("com.velocitypowered:velocity-api:3.6.0-SNAPSHOT")
compileOnly("org.slf4j:slf4j-api:2.0.18")
// Netty BOM must be declared with platform(...) so Gradle treats it as a
// BOM (dependency constraints) rather than a regular dependency. Without
Expand Down Expand Up @@ -268,7 +268,7 @@ tasks.named<Copy>("processVelocityResources") {

val velocityOnly = configurations.create("velocityOnly")
dependencies {
add("velocityOnly", "com.velocitypowered:velocity-api:3.5.0-SNAPSHOT")
add("velocityOnly", "com.velocitypowered:velocity-api:3.6.0-SNAPSHOT")
add("velocityOnly", "org.slf4j:slf4j-api:2.0.18")
// Adventure exposes JetBrains annotations in its public API but does not
// publish them transitively for this custom compile-only configuration.
Expand Down
Loading