-
Notifications
You must be signed in to change notification settings - Fork 0
Dependencies
AzureDoom edited this page Jun 8, 2026
·
6 revisions
Use the Hytale-specific dependency configurations when possible when pulling other mods/plugins:
dependencies {
// Runtime dependency: available when running the server locally
vineImplementation 'com.example:some-runtime-mod:1.0.0'
// Compile-time only dependency: available to your code, but not bundled
vineCompileOnly 'curse.maven:hexcodes-1448311:8166165'
// Optional IDE source attachment target
vineDecompileTargets 'curse.maven:hexcodes-1448311:8166165'
}vineCompileOnly is usually preferred over plain compileOnly for mod/plugin dependencies,
because dependencies declared in vineCompileOnly, vineImplementation, and
vineDecompileTargets can participate in the plugin’s decompilation/source attachment flow.