-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
94 lines (75 loc) · 2.7 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
buildscript {
repositories {
jcenter()
maven { url 'http://files.minecraftforge.net/maven' }
maven { url 'http://repo.spongepowered.org/maven' }
maven { url 'https://www.jitpack.io' }
}
dependencies {
classpath 'com.github.Chocohead:ForgeGradle:jitpack-SNAPSHOT'
classpath 'org.spongepowered:mixingradle:0.6-SNAPSHOT'
}
}
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
apply plugin: 'java'
apply plugin: 'org.spongepowered.mixin'
apply plugin: 'maven-publish'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://www.jitpack.io' }
maven { url 'https://www.dimdev.org/maven/' }
maven { url 'https://files.minecraftforge.net/maven' }
maven { url 'https://masa.dy.fi/maven' }
}
ext.configFile = file "build.properties"
configFile.withReader {
def prop = new Properties()
prop.load(it)
project.ext.config = new ConfigSlurper().parse prop
}
minecraft {
version = config.minecraft_version
mappings = config.mappings_version
runDir = 'minecraft'
makeObfSourceJar = false
tweakClass = 'org.dimdev.riftloader.launch.RiftLoaderClientLoader'
ext.mod_version = config.mod_version
if(mod_version.endsWith('-dev')){
mod_version = mod_version + "." + new Date().format('yyyyMMdd.HHmmss')
}
replaceIn "Reference.java"
replace "@MOD_VERSION@", mod_version
}
dependencies {
implementation 'fi.dy.masa.malilib:malilib-rift-' + config.minecraft_version_out + ':' + config.malilib_version + ':deobf'
implementation 'com.github.Chocohead:Rift:jitpack-aeee80c1fb-1:dev'
}
group = config.group + config.mod_id // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = config.mod_file_name + '-' + config.minecraft_version_out
version = project.minecraft.mod_version
jar {
baseName = archivesBaseName
}
mixin {
defaultObfuscationEnv notch
add sourceSets.main, 'mixins.' + config.mod_id + '.refmap.json'
}
processResources {
exclude '**/*.xcf'
exclude '**/xcf'
// this will ensure that this task is redone when the versions change.
inputs.property "mod_version", project.minecraft.mod_version
inputs.property "minecraft_version", project.config.minecraft_version
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
// replace version and mcversion
expand 'mod_version': project.minecraft.mod_version, 'minecraft_version': project.config.minecraft_version
}
// copy everything else, thats not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}