-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
120 lines (110 loc) · 3.13 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
buildscript {
ext.kotlin_version = '1.3.41'
repositories {
mavenCentral()
jcenter()
maven {
name = "forge"
url = "https://files.minecraftforge.net/maven"
}
maven {
name = 'sponge'
url = 'https://repo.spongepowered.org/maven'
}
maven {
url "https://plugins.gradle.org/m2/"
}
maven {
url 'https://jitpack.io'
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
classpath 'org.spongepowered:mixingradle:0.6-SNAPSHOT'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
apply plugin: 'org.spongepowered.mixin'
apply plugin: 'kotlin'
apply plugin: 'java'
group 'com.chattriggers'
version '1.0.0'
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
minecraft {
version = "1.8.9"
tweakClass = "com.chattriggers.launch.ParadoxTweaker"
mappings = "stable_22"
runDir = 'run'
clientJvmArgs = ["-XX:-DisableExplicitGC"] // fast world loading
makeObfSourceJar = false
}
repositories {
maven { url "https://jitpack.io" }
maven {
name = 'sponge'
url = 'https://repo.spongepowered.org/maven/'
}
mavenCentral()
jcenter()
}
mixin {
// Specify "notch" or "searge" here
defaultObfuscationEnv searge
add sourceSets.main, "mixin.ctjs.refmap.json"
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation('org.spongepowered:mixin:0.7.10-SNAPSHOT') {
exclude module: 'launchwrapper'
exclude module: 'guava'
exclude module: 'gson'
exclude module: 'commons-io'
}
implementation group: 'javax.vecmath', name: 'vecmath', version: '1.5.2'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
processResources {
inputs.files "src/main/resources"
outputs.dir "build/classes/main"
copy {
from("src/main/resources")
into("build/classes/main")
}
}
//jar {
// dependsOn configurations.compile
// from {
// configurations.embed.collect {
// it.isDirectory() ? it : zipTree(it)
// }
// }
// exclude 'META-INF/*.RSA', 'META-INF/*.SF', 'META-INF/*.DSA'
//}
//
//jar {
// manifest.attributes(
// //"MixinConfigs": 'mixins.hyperium.json, mixins.ctjs.json',
// "MixinConfigs": 'mixins.paradox.json',
// "TweakClass": 'dev.falsehonesty.paradox.launch.ParadoxTweaker',
// "TweakOrder": 0,
// "Manifest-Version": 1.0,
// //'Main-Class': 'cc.hyperium.installer.InstallerStart'
// )
// configurations.embed.each { dep ->
// from(project.zipTree(dep)) {
// exclude 'META-INF', 'META-INF/**'
// exclude 'org/jetbrains/annotations', 'org/jetbrains/annotations/**'
// }
// }
//}