2022-02-27 23:38:55 +01:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
2024-02-23 17:58:39 +01:00
|
|
|
|
|
|
|
maven("https://repo.opencollab.dev/maven-snapshots/")
|
|
|
|
maven("https://maven.fabricmc.net/")
|
|
|
|
maven("https://maven.neoforged.net/releases")
|
|
|
|
maven("https://maven.architectury.dev/")
|
2022-02-27 23:38:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-06-17 21:31:54 +02:00
|
|
|
// this is OK as long as the same version catalog is used in the main build and build-logic
|
|
|
|
// see https://github.com/gradle/gradle/issues/15383#issuecomment-779893192
|
|
|
|
implementation(files(libs.javaClass.superclass.protectionDomain.codeSource.location))
|
2024-02-23 17:58:39 +01:00
|
|
|
implementation(libs.indra)
|
|
|
|
implementation(libs.shadow)
|
|
|
|
implementation(libs.architectury.plugin)
|
|
|
|
implementation(libs.architectury.loom)
|
|
|
|
implementation(libs.minotaur)
|
2022-02-27 23:38:55 +01:00
|
|
|
}
|