Console /rules now fetches from Discord async (was returning hardcoded fallback without attempting fetch). DIAG logging kept for observability. All 6 builds at 1.0.5. CHANGELOG.md, INSTALL.md, ACTIVE_CONTEXT.md updated. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
46 lines
1011 B
Groovy
46 lines
1011 B
Groovy
buildscript {
|
|
repositories {
|
|
maven { url = 'https://maven.minecraftforge.net/' }
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'net.minecraftforge.gradle'
|
|
|
|
version = '1.0.5'
|
|
group = 'com.firefrostgaming.rules'
|
|
archivesBaseName = 'firefrostrules'
|
|
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(8)
|
|
|
|
minecraft {
|
|
mappings channel: 'official', version: '1.16.5'
|
|
runs {
|
|
server {
|
|
workingDirectory project.file('run')
|
|
mods {
|
|
firefrostrules {
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
minecraft 'net.minecraftforge:forge:1.16.5-36.2.39'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes(["Implementation-Title": "Firefrost Rules", "Implementation-Version": project.version])
|
|
}
|
|
}
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
options.encoding = 'UTF-8'
|
|
}
|