3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-09-08 20:43:04 +02:00
Geyser/build-logic/build.gradle.kts

18 Zeilen
531 B
Plaintext

2022-02-27 23:38:55 +01:00
plugins {
`kotlin-dsl`
}
repositories {
gradlePluginPortal()
2022-10-05 00:18:53 +02:00
maven("https://repo.opencollab.dev/maven-snapshots")
2022-02-27 23:38:55 +01:00
}
dependencies {
implementation("net.kyori", "indra-common", "3.0.1")
2022-10-05 00:18:53 +02:00
implementation("com.github.johnrengelman", "shadow", "7.1.3-SNAPSHOT")
2022-10-03 22:11:07 +02:00
// Within the gradle plugin classpath, there is a version conflict between loom and some other
// plugin for databind. This fixes it: minimum 2.13.2 is required by loom.
implementation("com.fasterxml.jackson.core:jackson-databind:2.14.0")
2022-02-27 23:38:55 +01:00
}