2023-02-11 23:48:36 +01:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
maven {
|
|
|
|
url = uri("https://repo.papermc.io/repository/maven-public/")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
val indraVersion = "3.0.1"
|
|
|
|
implementation("net.kyori", "indra-common", indraVersion)
|
2023-02-12 00:01:12 +01:00
|
|
|
implementation("net.kyori", "indra-licenser-spotless", indraVersion)
|
2023-02-11 23:48:36 +01:00
|
|
|
implementation("gradle.plugin.com.github.johnrengelman", "shadow", "7.1.2")
|
|
|
|
implementation("io.papermc.paperweight.userdev", "io.papermc.paperweight.userdev.gradle.plugin", "1.5.0")
|
|
|
|
}
|