This repository has been archived by the owner on Feb 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
91 lines (74 loc) · 2.16 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
buildscript {
repositories {
jcenter()
maven { url = 'https://files.minecraftforge.net/maven' }
maven { url = 'https://repo.spongepowered.org/maven' }
maven { url = 'https://plugins.gradle.org/m2' }
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
classpath 'org.spongepowered:mixingradle:0.6-SNAPSHOT'
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.4'
}
}
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'org.spongepowered.mixin'
apply plugin: 'com.github.johnrengelman.shadow'
version = 'b0.8'
group = 'gg.ruhama'
archivesBaseName = 'ruhama'
sourceCompatibility = targetCompatibility = '1.8'
compileJava {
sourceCompatibility = targetCompatibility = '1.8'
}
minecraft {
version = '1.12.2-14.23.5.2847'
runDir = 'run'
coreMod = 'bleach.a32k.mixin.MixinLoader'
mappings = 'stable_39'
}
jar.manifest.attributes(
'FMLCorePluginContainsFMLMod': true,
'FMLCorePlugin': 'bleach.a32k.mixin.MixinLoader',
'ForceLoadAsMod': true,
'TweakClass': 'org.spongepowered.asm.launch.MixinTweaker'
)
repositories {
mavenCentral()
maven { url = 'https://repo.spongepowered.org/maven' }
}
dependencies {
compile("org.spongepowered:mixin:0.7.11-SNAPSHOT") {
exclude module: 'launchwrapper'
exclude module: 'guava'
exclude module: 'gson'
exclude module: 'commons-io'
exclude module: 'log4j-core'
}
}
mixin {
add sourceSets.main, 'mixins.a32k.refmap.json'
}
shadowJar {
exclude 'dummyThing'
exclude 'LICENSE.txt'
classifier = 'all'
}
build.dependsOn(shadowJar)
reobf {
shadowJar {
mappingType = 'SEARGE'
classpath = sourceSets.main.compileClasspath
}
}
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'
}
}