forked from TheLMiffy1111/PackagedExCrafting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
103 lines (92 loc) · 2.46 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
buildscript {
repositories {
jcenter()
maven {
url = "http://files.minecraftforge.net/maven"
}
maven {
url = "https://plugins.gradle.org/m2/"
}
maven {
url = "https://jitpack.io/"
}
}
dependencies {
classpath "net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT"
classpath "com.wynprice.cursemaven:CurseMaven:2.1.0"
//classpath "com.github.Wyn-Price:CurseMaven:f0d58155e6"
}
}
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: "com.wynprice.cursemaven"
repositories {
jcenter()
maven {
url = "http://maven.blamejared.com"
}
maven {
url = "http://dvs1.progwml6.com/files/maven"
}
maven {
url = "http://tehnut.info/maven"
}
maven {
url = "http://maven.covers1624.net/"
}
maven {
url = "https://minecraft.curseforge.com/api/maven/"
}
maven {
url = "https://modmaven.k-4u.nl/"
}
}
version = "1.12.2-1.0.1.2"
group= "thelm.packagedexcrafting"
archivesBaseName = "PackagedExCrafting"
sourceCompatibility = targetCompatibility = "1.8"
compileJava {
sourceCompatibility = targetCompatibility = "1.8"
}
minecraft {
version = "1.12.2-14.23.5.2824"
runDir = "run"
mappings = "stable_39"
makeObfSourceJar = false
}
dependencies {
deobfCompile "mezz.jei:jei_1.12.2:4.15.0.273"
deobfCompile "codechicken:CodeChickenLib:1.12.2-3.2.3.357:universal"
deobfCompile "cofh:RedstoneFlux:1.12-2.1.0.6:universal"
deobfCompile("cofh:CoFHCore:1.12.2-4.6.3.27:universal") {
transitive = false
}
deobfCompile("cofh:CoFHWorld:1.12.2-1.3.1.7:universal") {
transitive = false
}
deobfCompile("cofh:ThermalFoundation:1.12.2-2.6.3.27:universal") {
transitive = false
}
deobfCompile("cofh:ThermalExpansion:1.12.2-5.5.4.43:universal") {
transitive = false
}
deobfCompile("cofh:ThermalDynamics:1.12.2-2.5.5.21:universal") {
transitive = false
}
deobfCompile "mcp.mobius.waila:Hwyla:1.8.25-B40_1.12"
deobfCompile("appeng:appliedenergistics2:rv6-stable-2") {
transitive = false
}
deobfCompile "curse.maven:packagedauto:2806611"
deobfCompile "curse.maven:cucumber:2645867"
deobfCompile "curse.maven:extended-crafting:2777071"
}
processResources
{
}
task deobfJar(type: Jar) {
from sourceSets.main.output
classifier = 'deobf'
}
artifacts {
archives deobfJar
}