mirror of
https://github.com/barkeser2002/Not-Enough-Crashes.git
synced 2026-09-25 05:59:49 +03:00
28 lines
469 B
Groovy
28 lines
469 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
}
|
|
dependencies {
|
|
// We depend on fabric loader here to use the fabric @Environment annotations
|
|
// Do NOT use other classes from fabric loader
|
|
modImplementation libs.fabric.loader
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
}
|
|
|
|
configurations {
|
|
dev
|
|
}
|
|
|
|
artifacts {
|
|
dev(jar)
|
|
}
|
|
|
|
architectury {
|
|
common("fabric","forge")
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|