FrogLoader/minecraft/build.gradle.kts

25 lines
405 B
Plaintext
Raw Normal View History

2024-05-19 12:43:19 -04:00
plugins {
java
2024-08-28 07:11:11 -04:00
id("dev.frogmc.phytotelma") version "0.0.1-alpha.21"
2024-05-19 12:43:19 -04:00
}
dependencies {
implementation(project(":"))
}
phytotelma {
minecraft {
2024-08-20 09:12:48 -04:00
version = "1.21.1"
mappings = mojmap()
}
}
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
tasks.runClient {
classpath(sourceSets.test.get().runtimeClasspath)
2024-06-12 18:41:55 -04:00
}