forked from tom5454/LogisticsBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (51 loc) · 1.78 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
55
56
57
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
name = "forge"
url = "https://files.minecraftforge.net/maven"
}
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
}
}
apply plugin: 'java'
apply plugin: 'net.minecraftforge.gradle'
def forge_version = '1.12.2-14.23.5.2854'
def mappings_version = '20171120-1.12'
minecraft {
mappings channel: 'snapshot', version: mappings_version
}
repositories {
jcenter()
maven {
name = 'JitPack.io'
url = 'https://jitpack.io'
}
maven {
name = "forge"
url = "https://files.minecraftforge.net/maven"
}
maven {
name "refinedstorage"
url = "https://repo.refinedmods.com/"
}
maven {
name = "RS485 Cache"
url = "https://www.rs485.network/maven-cache/"
}
}
dependencies {
minecraft group: 'net.minecraftforge', name: 'forge', version: forge_version
implementation group: 'com.github.RS485', name: 'LogisticsPipes', version: 'dev-mc1122-fg3-SNAPSHOT', classifier: 'deobf', changing: true
compileOnly group: 'MCMultiPart2', name: 'MCMultiPart', version: '2.5.3', classifier: 'deobf', transitive: false
compileOnly group: 'cofh', name: 'ThermalDynamics', version: '1.12.2-2.5.5.21', classifier: 'deobf', transitive: false
compileOnly group: 'refinedstorage', name: 'refinedstorage', version: '1.6.16-386', transitive: false
compileOnly group: 'codechicken', name: 'NotEnoughItems', version: '1.12.2-2.4.3.245', classifier: 'deobf', transitive: false
compileOnly group: 'appeng', name: 'appliedenergistics2', version: 'rv6-stable-7', transitive: false
}
tasks.withType(Wrapper) {
version = 4.9
}