-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (37 loc) · 1.02 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
buildscript {
repositories {
jcenter()
maven { url 'https://www.dimdev.org/maven/' }
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.4-SNAPSHOT'
}
}
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
apply plugin: 'java'
apply plugin: 'org.spongepowered.mixin'
group 'org.dimdev.notenoughvanilla'
version '1.0.1'
archivesBaseName = 'NotEnoughVanilla'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://www.dimdev.org/maven/' }
}
dependencies {
implementation 'org.dimdev:rift:1.0.2-10:dev'
}
minecraft {
version = '1.13'
mappings = 'snapshot_3'
runDir = 'run'
tweakClass = 'org.dimdev.riftloader.launch.RiftLoaderTweaker'
}
mixin {
defaultObfuscationEnv notch
add sourceSets.main, 'mixins.notenoughvanilla.refmap.json'
}