This repository has been archived by the owner on Feb 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
155 lines (127 loc) · 4.02 KB
/
build.gradle
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
buildscript {
repositories {
jcenter()
mavenCentral()
maven { url 'https://repo.spongepowered.org/maven' }
maven { url 'https://files.minecraftforge.net/maven' }
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
classpath 'org.spongepowered:mixingradle:0.6-SNAPSHOT'
}
}
plugins {
id "java"
id "com.github.johnrengelman.shadow" version "4.0.4"
}
repositories {
mavenCentral()
maven { url = 'https://jitpack.io' }
maven { url 'https://repo.spongepowered.org/maven' }
}
configurations {
embed
compile.extendsFrom embed
}
apply plugin: "net.minecraftforge.gradle.forge"
apply plugin: 'org.spongepowered.mixin'
version = project.version
group = "club.mineplex.clans"
archivesBaseName = "ClansMod"
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
compileJava.options.encoding = 'UTF-8'
dependencies {
annotationProcessor 'org.spongepowered:mixin:0.8.5-SNAPSHOT:processor'
embed('org.spongepowered:mixin:0.7.11-SNAPSHOT') {
exclude module: 'gson'
exclude module: 'guava'
exclude module: 'jarjar'
exclude module: 'commons-codec'
exclude module: 'commons-io'
exclude module: 'launchwrapper'
exclude module: 'asm-commons'
exclude module: 'slf4j-api'
}
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
embed 'com.github.Vatuu:discord-rpc:1.6.2'
implementation 'org.jetbrains:annotations:22.0.0'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.0.1'
embed fileTree(dir: 'libs', includes: ['*.jar'])
}
minecraft {
version = '1.8.9-11.15.1.2318-1.8.9'
runDir = 'run'
mappings = 'stable_22'
makeObfSourceJar = false
clientJvmArgs += '-Dfml.coreMods.load=club.mineplex.clans.asm.FMLLoadingPlugin'
}
processResources {
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
expand 'version': project.version, 'mcversion': project.minecraft.version
}
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
rename '(.+_at.cfg)', 'META-INF/$1'
}
mixin {
defaultObfuscationEnv searge
add sourceSets.main, "clansmod.refmap.json"
}
reobf {
shadowJar {
mappingType = 'SEARGE'
classpath = sourceSets.main.compileClasspath
}
}
jar {
configurations.embed.each { dep ->
from(project.zipTree(dep)) {
exclude "META-INF", "META-INF/**"
}
from(project.zipTree(dep)) {
include "META-INF/services", "META-INF/services/"
}
}
manifest {
attributes([
"MixinConfigs" : "clansmod.mixins.json",
'TweakClass' : 'org.spongepowered.asm.launch.MixinTweaker',
'TweakOrder' : 0,
'FMLCorePluginContainsFMLMod' : 'true',
'ForceLoadAsMod' : 'true',
'FMLCorePlugin' : 'club.mineplex.clans.asm.FMLLoadingPlugin',
'FMLAT' : 'clansmod_at.cfg',
])
}
duplicatesStrategy DuplicatesStrategy.EXCLUDE
archiveName = project.modName + "-" + project.minecraftVersion + "-" + version + ".jar"
}
sourceSets {
main { output.resourcesDir = output.classesDir }
}
shadowJar {
archiveName = tasks.jar.archiveName
configurations = [project.configurations.embed]
duplicatesStrategy DuplicatesStrategy.EXCLUDE
classifier ''
exclude('LICENSE')
}
task copyLicenses(type: Copy) {
from(project.projectDir) {
include('LICENSE')
include('NOTICE')
include('licenses/**')
}
into(sourceSets.main.output.resourcesDir)
}
artifacts {
archives jar
archives shadowJar
}
tasks.jar.dependsOn(tasks.copyLicenses)