3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-10-02 08:00:07 +02:00
Geyser/build-logic/build.gradle.kts
Joshua Castle e266ee9ff6
Properly build on eclipse via indra
Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com>
2023-05-13 22:20:05 -07:00

19 Zeilen
604 B
Plaintext

plugins {
`kotlin-dsl`
}
repositories {
maven("https://repo.stellardrift.ca/repository/snapshots/")
gradlePluginPortal()
maven("https://repo.opencollab.dev/maven-snapshots")
}
dependencies {
implementation("net.kyori", "indra-common", "3.1.0-SNAPSHOT")
implementation("com.github.johnrengelman", "shadow", "7.1.3-SNAPSHOT")
// 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")
}