2022-02-27 16:38:55 -06:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
2022-10-04 23:18:53 +01:00
|
|
|
maven("https://repo.opencollab.dev/maven-snapshots")
|
2022-02-27 16:38:55 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-09-30 19:41:35 +02:00
|
|
|
implementation("net.kyori", "indra-common", "3.1.3")
|
|
|
|
implementation("com.github.johnrengelman", "shadow", "8.1.1")
|
2022-10-03 21:11:07 +01: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.
|
2022-11-24 09:10:04 +08:00
|
|
|
implementation("com.fasterxml.jackson.core:jackson-databind:2.14.0")
|
2022-02-27 16:38:55 -06:00
|
|
|
}
|