CrazyAuctions/buildSrc/build.gradle.kts

19 lines
432 B
Plaintext
Raw Normal View History

2023-04-01 17:19:31 +02:00
plugins {
`kotlin-dsl`
}
repositories {
gradlePluginPortal()
2023-07-21 02:16:20 +02:00
maven("https://repo.crazycrew.us/first-party/")
2023-04-01 17:19:31 +02:00
}
dependencies {
2023-07-21 02:16:20 +02:00
implementation("com.github.johnrengelman", "shadow", "8.1.1")
2023-04-01 17:19:31 +02:00
2023-07-21 02:16:20 +02:00
implementation("io.papermc.paperweight", "paperweight-userdev", "1.5.5")
2023-04-01 17:19:31 +02:00
2023-07-21 02:16:20 +02:00
implementation("com.ryderbelserion.feather", "feather-plugin", "0.0.0.4");
2023-04-01 17:19:31 +02:00
2023-07-21 02:16:20 +02:00
implementation("com.modrinth.minotaur", "Minotaur", "2.8.0")
2023-04-01 17:19:31 +02:00
}