mirror of
https://github.com/Aizistral-Studios/No-Chat-Restrictions.git
synced 2026-02-04 05:38:24 +00:00
99 lines
3.2 KiB
Groovy
99 lines
3.2 KiB
Groovy
buildscript {
|
|
repositories {
|
|
maven { url = 'https://files.minecraftforge.net/maven' }
|
|
maven { url = 'https://repo.spongepowered.org/repository/maven-public/' }
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
|
|
classpath 'org.spongepowered:mixingradle:0.7-SNAPSHOT'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'net.minecraftforge.gradle'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'maven-publish'
|
|
apply plugin: 'org.spongepowered.mixin'
|
|
|
|
mixin {
|
|
add sourceSets.main, "nochatrestrictions.refmap.json"
|
|
}
|
|
|
|
version = project.modVersion
|
|
group = 'com.aizistral.nochatrestrictions'
|
|
archivesBaseName = 'NoChatRestrictions'
|
|
|
|
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
|
|
|
|
println('Java: ' + System.getProperty('java.version') + ' JVM: ' + System.getProperty('java.vm.version') + '(' + System.getProperty('java.vendor') + ') Arch: ' + System.getProperty('os.arch'))
|
|
|
|
minecraft {
|
|
mappings channel: 'snapshot', version: '20201028-1.16.3'
|
|
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
|
|
// accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
|
|
|
|
runs {
|
|
client {
|
|
workingDirectory project.file('run')
|
|
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
|
|
property 'forge.logging.console.level', 'debug'
|
|
arg "-mixin.config=nochatrestrictions.mixins.json"
|
|
|
|
mods {
|
|
nochatrestrictions {
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
|
|
server {
|
|
workingDirectory project.file('run')
|
|
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
|
|
property 'forge.logging.console.level', 'debug'
|
|
arg "-mixin.config=nochatrestrictions.mixins.json"
|
|
|
|
mods {
|
|
nochatrestrictions {
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven { url = "https://repo.spongepowered.org/maven" }
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
minecraft 'net.minecraftforge:forge:1.16.4-35.1.37'
|
|
annotationProcessor 'org.spongepowered:mixin:0.8'
|
|
annotationProcessor 'com.google.code.gson:gson:2.8.0'
|
|
annotationProcessor 'com.google.guava:guava:21.0'
|
|
annotationProcessor 'org.ow2.asm:asm-tree:7.2'
|
|
annotationProcessor 'org.ow2.asm:asm-commons:7.2'
|
|
annotationProcessor 'org.ow2.asm:asm-util:7.2'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes([
|
|
"Specification-Title": "NoChatRestrictions",
|
|
"Specification-Vendor": "Aizistral",
|
|
"Specification-Version": project.version,
|
|
"Implementation-Title": project.name,
|
|
"Implementation-Version": "${version}",
|
|
"Implementation-Vendor" :"NoChatRestrictions",
|
|
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
|
|
"TweakClass": "org.spongepowered.asm.launch.MixinTweaker",
|
|
"TweakOrder": 0,
|
|
"MixinConfigs" : "nochatrestrictions.mixins.json"
|
|
])
|
|
}
|
|
}
|
|
|
|
jar.finalizedBy('reobfJar') |