-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
58 lines (44 loc) · 1.21 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
import com.github.glassmc.kiln.standard.MixinRemapper
import com.github.glassmc.kiln.standard.environment.GlassLoaderEnvironment
buildscript {
repositories {
mavenCentral()
maven {
url = 'https://jitpack.io/'
}
maven {
url = 'https://glassmc.ml/repository/'
}
}
dependencies {
classpath 'com.github.glassmc:kiln:0.8.10'
}
}
apply plugin: 'kiln-main'
group = "com.github.glassmc"
version = "1.0"
sourceCompatibility = targetCompatibility = 1.8
repositories {
mavenCentral()
maven {
url = 'https://glassmc.ml/repository/'
}
maven {
url = 'https://repo.spongepowered.org/repository/maven-public/'
}
maven {
url = 'https://jitpack.io/'
}
}
dependencies {
shadowImplementation 'com.github.glassmc:loader:0.9.9'
implementation 'com.github.glassmc:mixin:c5ecf5aa4a:mapped'
compileOnly 'net.minecraft:client-1.7.10:yarn'
compileOnly 'net.minecraft:client-1.8.9:mcp'
compileOnly 'net.minecraft:client-1.17.1:yarn'
compileOnly 'net.minecraft:client-1.18.2:mojang'
}
kiln {
transformers = [new MixinRemapper()]
environment = new GlassLoaderEnvironment("0.9.9")
}