diff options
Diffstat (limited to 'engine')
| -rw-r--r-- | engine/build.gradle.kts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/engine/build.gradle.kts b/engine/build.gradle.kts index cef169a..854d965 100644 --- a/engine/build.gradle.kts +++ b/engine/build.gradle.kts @@ -11,7 +11,10 @@ dependencies { api("io.ktor:ktor-client-cio:3.5.2") // Adventure API (provided by platform implementations) - compileOnly("net.kyori:adventure-api:4.26.1") + // Pinned to the Paper-bundled version. Velocity (velocity-api 3.5.1) still ships Adventure 4.26.1, + // so engine must stay within the API surface both versions share -- currently just the Component type. + // Once platform-velocity moves to velocity-api 4.x (Adventure 5.2.0), this constraint goes away. + compileOnly("net.kyori:adventure-api:5.2.0") - testImplementation("net.kyori:adventure-api:4.26.1") + testImplementation("net.kyori:adventure-api:5.2.0") } |
