BaseBandRewrite/Client/build.gradle

168 lines
4.9 KiB
Groovy
Raw Normal View History

2023-08-26 16:19:12 +02:00
buildscript {
repositories {
maven { url = 'https://maven.minecraftforge.net' }
maven { url = 'https://repo.spongepowered.org/repository/maven-public' }
mavenCentral()
}
2023-08-26 16:19:12 +02:00
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.1', changing: true
classpath "org.spongepowered:mixingradle:0.7.+"
classpath 'com.guardsquare:proguard-gradle:7.1.0'
2023-08-26 16:19:12 +02:00
}
}
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'org.spongepowered.mixin'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'java'
group = project.modGroup
version = project.modVersion
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
tasks.withType(JavaCompile) {
configure(options) {
options.compilerArgs.add("-XDignore.symbol.file=true")
options.encoding = 'utf-8'
}
}
minecraft {
mappings channel: 'stable', version: '39-1.12'
accessTransformer = file('src/main/resources/client_at.cfg')
runs {
client {
workingDirectory project.file('run')
jvmArgs = ["-Dfml.coreMods.load=com.baseband.client.DevStub"]
2024-05-24 16:34:07 +02:00
args = ["--userType", "mojang", "--username", "qukn", "--accessToken", "eyJraWQiOiJhYzg0YSIsImFsZyI6IkhTMjU2In0.eyJ4dWlkIjoiMjUzNTQyNTU0MzA3NTkyNSIsImFnZyI6IkFkdWx0Iiwic3ViIjoiNGU0YmNlN2UtZDBkZi00MjM3LWFhNTUtMjZmZTVhNjY3ZmQ4IiwiYXV0aCI6IlhCT1giLCJucyI6ImRlZmF1bHQiLCJyb2xlcyI6W10sImlzcyI6ImF1dGhlbnRpY2F0aW9uIiwiZmxhZ3MiOlsidHdvZmFjdG9yYXV0aCIsIm1zYW1pZ3JhdGlvbl9zdGFnZTQiLCJvcmRlcnNfMjAyMiIsIm11bHRpcGxheWVyIl0sInByb2ZpbGVzIjp7Im1jIjoiODZhMzJmY2UtYTk0Ni00MzY2LWI0YTAtMDk3YTI5MDcyZTU0In0sInBsYXRmb3JtIjoiUENfTEFVTkNIRVIiLCJuYmYiOjE3MTY1NTc3MzQsImV4cCI6MTcxNjY0NDEzNCwiaWF0IjoxNzE2NTU3NzM0fQ.Bt1AahWJrQqv8iJe8JH4T2IczdKzDjPnN-z7YLpcpFw", "--uuid", "86a32fcea9464366b4a0097a29072e54"]
2023-08-26 16:19:12 +02:00
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
property 'forge.logging.console.level', 'debug'
}
}
}
2023-09-12 04:29:54 +02:00
2023-08-26 16:19:12 +02:00
repositories {
maven {
name = 'spongepowered-repo'
url = 'https://repo.spongepowered.org/maven'
}
maven {
name = "jitpack.io"
url = "https://jitpack.io"
}
mavenCentral()
}
2023-09-12 04:29:54 +02:00
configurations {
jarLibs
}
2023-08-26 16:19:12 +02:00
dependencies {
minecraft('net.minecraftforge:forge:1.12.2-14.23.5.2860')
2023-08-26 16:19:12 +02:00
2024-05-23 00:15:04 +02:00
jarLibs('com.github.fzakaria:ascii85:1.2')
2024-03-27 02:48:15 +01:00
jarLibs('org.spongepowered:mixin:0.7.11-SNAPSHOT') {
2023-08-26 16:19:12 +02:00
exclude module: 'launchwrapper'
exclude module: 'guava'
exclude module: 'gson'
exclude module: 'commons-io'
exclude module: 'log4j-core'
}
2023-09-27 21:42:52 +02:00
jarLibs(files('libs/TuddyLIB.jar'))
// should NOT go into the jar.
2024-03-20 01:13:18 +01:00
//implementation(files('libs/mcregistry-1.0.jar'))
2023-09-12 04:29:54 +02:00
2023-08-26 16:19:12 +02:00
annotationProcessor('org.spongepowered:mixin:0.8.5:processor') {
exclude module: 'gson'
}
2023-09-12 04:29:54 +02:00
implementation configurations.jarLibs
2023-08-26 16:19:12 +02:00
}
processResources {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
inputs.property 'version', project.version
inputs.property 'mcversion', '1.12.2'
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
expand 'version': project.version, 'mcversion': '1.12.2'
}
from(sourceSets.main.resources.srcDirs) { exclude 'mcmod.info' }
rename '(.+_at.cfg)', 'META-INF/$1'
}
mixin {
defaultObfuscationEnv 'searge'
add sourceSets.main, 'mixins.baseband.refmap.json'
}
jar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
2023-09-12 04:29:54 +02:00
from {
configurations.jarLibs.collect {
it.isDirectory() ? it : zipTree(it)
}
} {
exclude "LICENSE.txt", "META-INF/MANIFSET.MF", "META-INF/maven/**", "META-INF/*.RSA", "META-INF/*.SF"
2023-09-12 04:29:54 +02:00
}
2024-03-22 01:53:11 +01:00
2024-03-27 02:48:15 +01:00
manifest.attributes (
'TweakClass': 'org.spongepowered.asm.launch.MixinTweaker',
'TweakOrder': '0',
'FMLCorePluginContainsFMLMod': 'true',
'FMLCorePlugin': 'com.baseband.client.DevStub',
'ForceLoadAsMod': 'true'
)
2024-03-22 01:53:11 +01:00
baseName = ''
version = ''
classifier = 'BaseBand-Oslo'
}
def proguardBuildDir = "${buildDir}/proguard"
def proguardDir = "proguard"
task proguard(type: proguard.gradle.ProGuardTask, dependsOn: jar) {
configuration "${proguardDir}/proguard.cfg"
injars jar.archiveFile
outjars "${proguardBuildDir}/classes.jar"
libraryjars "${proguardDir}/rt.jar"
libraryjars configurations.jarLibs
dump "${proguardBuildDir}/dump.txt"
printmapping "${proguardBuildDir}/mapping.txt"
printconfiguration "${proguardBuildDir}/configuration.txt"
}
2024-03-22 01:53:11 +01:00
task releaseJar(type: Jar, dependsOn: jar) {
from(zipTree(jar.archivePath)) {
exclude 'com/baseband/client/DevStub.class'
exclude 'com/baseband/client/DevStub.java'
2024-03-27 02:48:15 +01:00
exclude 'org/'
2024-03-22 01:53:11 +01:00
}
2024-03-27 02:48:15 +01:00
manifest.attributes (
'ReleaseJar': 'true'
)
2024-03-22 01:53:11 +01:00
baseName = ''
version = ''
classifier = 'BaseBand-Broadway'
}
build.dependsOn(releaseJar)