mirror of
https://github.com/Aizistral-Studios/No-Chat-Restrictions.git
synced 2026-02-04 05:38:24 +00:00
70 lines
1.8 KiB
Groovy
70 lines
1.8 KiB
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'eclipse'
|
|
id 'idea'
|
|
id 'maven-publish'
|
|
id 'net.neoforged.gradle.userdev' version '7.0.116'
|
|
}
|
|
|
|
version = project.mod_version
|
|
group = 'com.aizistral.nochatrestrictions'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
}
|
|
|
|
base {
|
|
archivesName = 'NoChatRestrictions'
|
|
}
|
|
|
|
// Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17.
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
|
|
}
|
|
|
|
runs {
|
|
|
|
configureEach {
|
|
// Recommended logging data for a userdev environment
|
|
// The markers can be added/remove as needed separated by commas.
|
|
// "SCAN": For mods scan.
|
|
// "REGISTRIES": For firing of registry events.
|
|
// "REGISTRYDUMP": For getting the contents of all registries.
|
|
systemProperty 'forge.logging.markers', 'REGISTRIES'
|
|
|
|
// Recommended logging level for the console
|
|
// You can set various levels here.
|
|
// Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
|
|
systemProperty 'forge.logging.console.level', 'info'
|
|
|
|
modSource project.sourceSets.main
|
|
}
|
|
|
|
client {
|
|
systemProperty 'forge.enabledGameTestNamespaces', 'nochatrestrictions'
|
|
}
|
|
|
|
server {
|
|
systemProperty 'forge.enabledGameTestNamespaces', 'nochatrestrictions'
|
|
programArgument '--nogui'
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation "net.neoforged:neoforge:${neo_version}"
|
|
}
|
|
|
|
tasks.withType(ProcessResources).configureEach {
|
|
var replaceProperties = [
|
|
mod_version: manifest_version
|
|
]
|
|
|
|
inputs.properties replaceProperties
|
|
|
|
filesMatching(['META-INF/mods.toml', 'pack.mcmeta']) {
|
|
expand replaceProperties + [project: project]
|
|
}
|
|
} |