-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (33 loc) · 862 Bytes
/
build.gradle
File metadata and controls
39 lines (33 loc) · 862 Bytes
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
group 'com.example'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
}
}
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
apply plugin: 'java'
sourceCompatibility = targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
minecraft {
version = "1.8.9"
tweakClass = "cc.hyperium.launch.HyperiumTweaker"
mappings = "stable_22"
runDir = 'run'
makeObfSourceJar = false
}
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
compile 'com.github.HyperiumClient:Hyperium:master-SNAPSHOT'
}