-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·54 lines (47 loc) · 1.04 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
45
46
47
48
49
50
51
52
53
54
buildscript {
repositories {
jcenter()
maven {
name = 'Fabric'
url = 'http://maven.modmuss50.me/'
}
}
dependencies {
classpath "net.fabricmc:fabric-loom:0.1.0-SNAPSHOT"
}
}
plugins {
id 'java'
id 'eclipse'
id 'idea'
}
apply plugin: net.fabricmc.loom.LoomGradlePlugin
sourceCompatibility = 1.8
targetCompatibility = 1.8
archivesBaseName = "inredaddons"
version = "1.0"
minecraft {
refmapName = 'mixins.inredaddons.refmap.json'
}
repositories {
jcenter()
mavenCentral()
maven {
url 'https://repo.elytradev.com/'
}
flatDir {
// here until farfetchd gets stuff in a maven
dirs 'libs'
}
}
dependencies {
minecraft "com.mojang:minecraft:19w02a"
mappings "net.fabricmc:yarn:19w02a.12"
modCompile "net.fabricmc:fabric-loader:0.3.2.92"
modCompile "net.fabricmc:fabric:0.1.4.71"
modCompile 'com.elytradev:infraredstone-fabric:19w02a-1.0.2.45'
modCompile "io.github.prospector.silk:SilkAPI:1.0.0-26"
//needed to work in dev till jar-in-jar
modCompile name: "qcommon-architect-1.0.0"
modCompile name: "qcommon-croco-1.0.3"
}