NeoForge 1.21.1, Forge 1.20.1, Forge 1.16.5 All compiled and deployed to NextCloud (Task #136) Source committed for Task #138 (CurseForge generic fork) CLAUDE.md with build environment docs included Claude (Chronicler #83 - The Compiler) <claude@firefrostgaming.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.0'
|
|
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'
|
|
}
|