forked from Mumfrey/WorldEditCUI
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (40 loc) · 1.05 KB
/
build.gradle
File metadata and controls
44 lines (40 loc) · 1.05 KB
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
buildscript {
repositories {
maven { url 'https://www.jitpack.io' }
maven { url 'https://files.minecraftforge.net/maven' }
maven { url 'http://repo.spongepowered.org/maven' }
}
dependencies {
classpath 'com.github.Chocohead:ForgeGradle:jitpack-SNAPSHOT'
classpath 'org.spongepowered:mixingradle:0.6-SNAPSHOT'
}
}
plugins {
id 'de.set.ecj' version '1.3.0'
}
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
apply plugin: 'org.spongepowered.mixin'
apply plugin: 'java'
group 'me.zero.cc'
version '0.0.0.1'
archivesBaseName = 'WorldEditCUI'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://www.jitpack.io' }
maven { url 'https://www.dimdev.org/maven/' }
}
dependencies {
implementation 'com.github.Chocohead:Rift:jitpack-SNAPSHOT:dev'
}
minecraft {
version = '1.13.2'
mappings = 'snapshot_20181130'
runDir = 'run'
tweakClass = 'org.dimdev.riftloader.launch.RiftLoaderClientTweaker'
}
mixin {
defaultObfuscationEnv notch
add sourceSets.main, 'mixin.example.refmap.json'
}