25 lines
405 B
Plaintext
25 lines
405 B
Plaintext
plugins {
|
|
java
|
|
id("dev.frogmc.phytotelma") version "0.0.1-alpha.25"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":"))
|
|
}
|
|
|
|
phytotelma {
|
|
minecraft {
|
|
version = "1.21.1"
|
|
mappings = mojmap()
|
|
}
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
|
targetCompatibility = JavaVersion.VERSION_21
|
|
}
|
|
|
|
tasks.runClient {
|
|
classpath(sourceSets.test.get().runtimeClasspath)
|
|
}
|