1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
buildscript {
repositories {
mavenCentral()
maven { url = "https://maven.minecraftforge.net" }
}
dependencies {
classpath ('com.anatawa12.forge:ForgeGradle:1.2-1.0.+') {
changing = true
}
}
}
plugins {
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
apply plugin: 'forge'
// These settings allow you to choose what version of Java you want to be compatible with. Forge 1.7.10 runs on Java 6 to 8.
sourceCompatibility = 1.8
targetCompatibility = 1.8
minecraft {
version = "1.7.10-10.13.4.1614-1.7.10"
runDir = "run"
mappings = 'stable_12'
replaceIn 'src/main/java/me/lucko/spark/forge/Forge1710SparkMod.java'
replace "@version@", project.pluginVersion
}
configurations {
shade
implementation.extendsFrom shade
}
// https://github.com/MinecraftForge/ForgeGradle/issues/627#issuecomment-533927535
configurations.all {
resolutionStrategy {
force 'org.lwjgl.lwjgl:lwjgl-platform:2.9.4-nightly-20150209'
}
}
dependencies {
shade project(':spark-common')
}
processResources {
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
expand (
'pluginVersion': project.pluginVersion,
'pluginDescription': project.pluginDescription
)
}
}
jar {
manifest {
attributes 'FMLAT': 'spark_at.cfg'
}
}
shadowJar {
archiveName = 'spark-forge1710.jar'
configurations = [project.configurations.shade]
relocate 'okio', 'me.lucko.spark.lib.okio'
relocate 'okhttp3', 'me.lucko.spark.lib.okhttp3'
relocate 'net.kyori.adventure', 'me.lucko.spark.lib.adventure'
relocate 'net.kyori.examination', 'me.lucko.spark.lib.adventure.examination'
relocate 'net.bytebuddy', 'me.lucko.spark.lib.bytebuddy'
relocate 'org.tukaani.xz', 'me.lucko.spark.lib.xz'
relocate 'com.google.protobuf', 'me.lucko.spark.lib.protobuf'
relocate 'org.objectweb.asm', 'me.lucko.spark.lib.asm'
relocate 'one.profiler', 'me.lucko.spark.lib.asyncprofiler'
relocate 'me.lucko.bytesocks.client', 'me.lucko.spark.lib.bytesocks'
relocate 'com.neovisionaries.ws', 'me.lucko.spark.lib.websockets'
exclude 'module-info.class'
exclude 'META-INF/maven/**'
exclude 'META-INF/proguard/**'
}
reobf.reobf(shadowJar) { spec ->
spec.classpath = sourceSets.main.compileClasspath;
}
artifacts {
archives shadowJar
shadow shadowJar
}
build.dependsOn(shadowJar)
|