mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-11-22 23:08:30 +01:00
Generate velocity-plugins.json and relocate fastutil (#2940)
This commit is contained in:
parent
1ebc3fd8f6
commit
d1cedbb823
2 changed files with 6 additions and 1 deletions
|
@ -1,11 +1,12 @@
|
||||||
val velocityVersion = "3.0.0"
|
val velocityVersion = "3.0.0"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
annotationProcessor("com.velocitypowered", "velocity-api", velocityVersion)
|
||||||
api(projects.core)
|
api(projects.core)
|
||||||
}
|
}
|
||||||
|
|
||||||
platformRelocate("com.fasterxml.jackson")
|
platformRelocate("com.fasterxml.jackson")
|
||||||
platformRelocate("it.unimi.fastutil")
|
platformRelocate("it.unimi.dsi.fastutil")
|
||||||
platformRelocate("net.kyori.adventure.text.serializer.gson.legacyimpl")
|
platformRelocate("net.kyori.adventure.text.serializer.gson.legacyimpl")
|
||||||
|
|
||||||
exclude("com.google.*:*")
|
exclude("com.google.*:*")
|
||||||
|
|
|
@ -10,6 +10,10 @@ allprojects {
|
||||||
group = "org.geysermc"
|
group = "org.geysermc"
|
||||||
version = "2.1.0-SNAPSHOT"
|
version = "2.1.0-SNAPSHOT"
|
||||||
description = "Allows for players from Minecraft: Bedrock Edition to join Minecraft: Java Edition servers."
|
description = "Allows for players from Minecraft: Bedrock Edition to join Minecraft: Java Edition servers."
|
||||||
|
|
||||||
|
tasks.withType<JavaCompile> {
|
||||||
|
options.encoding = "UTF-8"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val platforms = setOf(
|
val platforms = setOf(
|
||||||
|
|
Loading…
Reference in a new issue