-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
43 lines (36 loc) · 978 Bytes
/
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
buildscript {
repositories {
jcenter()
maven { url 'https://www.dimdev.org/maven/' }
maven { url 'http://repo.spongepowered.org/maven' }
}
dependencies {
classpath 'org.dimdev:ForgeGradle:2.3-SNAPSHOT'
classpath 'org.spongepowered:mixingradle:0.6-SNAPSHOT'
}
}
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
apply plugin: 'org.spongepowered.mixin'
apply plugin: 'java'
group 'com.mrcrayfish'
version '0.1.0'
archivesBaseName = 'furniture-rift'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://www.dimdev.org/maven/' }
}
dependencies {
implementation 'org.dimdev:rift:1.0.4-65:dev'
}
minecraft {
version = '1.13'
mappings = 'snapshot_20180826'
runDir = 'run'
tweakClass = 'org.dimdev.riftloader.launch.RiftLoaderClientTweaker'
}
mixin {
defaultObfuscationEnv notch
add sourceSets.main, 'mixins.cfmrift.refmap.json'
}