cawezs_mantle_to_stratus/build.gradle
2024-10-22 18:23:11 -04:00

40 lines
767 B
Groovy

plugins {
id 'eclipse'
id 'net.neoforged.moddev' version '1.0.20'
}
version = '1.0'
base.archivesName = "modid"
java.toolchain.languageVersion = JavaLanguageVersion.of(21)
neoForge {
version = "21.1.65"
runs {
client {
client()
}
server {
server()
}
configureEach {
systemProperty 'forge.logging.markers', 'REGISTRIES'
logLevel = org.slf4j.event.Level.DEBUG
}
}
mods {
testproject {
sourceSet sourceSets.main
}
}
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
}
apply from: 'mcreator.gradle'