forked from Flamarine/Randore-Rift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (39 loc) · 1003 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
44
45
46
buildscript {
repositories {
mavenCentral()
maven { url 'https://www.jitpack.io' }
maven { url 'https://files.minecraftforge.net/maven' }
}
dependencies {
//Change jitpack to moderniser when Forge uploads 1.13.2 MCPConfig
classpath 'com.github.unascribed:RiftGradle:73e7b0a'
}
}
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.0'
}
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
apply plugin: 'java'
group 'dev.intelligentcreations'
version '1.0'
archivesBaseName = 'Randore'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://repo.unascribed.com' }
maven { url 'https://jitpack.io' }
flatDir {
dirs 'libs'
}
}
dependencies {
implementation 'com.github.unascribed:Rift:FINAL'
implementation 'net.insomniakitten.riftlin:Riftlin:0.3.0'
}
minecraft {
version = '1.13.2'
mappings = 'snapshot_20181106'
runDir = 'run'
tweakClass = 'org.dimdev.riftloader.launch.RiftLoaderClientTweaker'
}