-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
117 lines (106 loc) · 2.96 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
buildscript {
repositories {
jcenter()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
}
}
repositories {
maven {
name = "CurseForge"
url = "https://minecraft.curseforge.com/api/maven/"
}
maven {
name = "CoFH Maven"
url = "http://maven.covers1624.net"
}
maven {
name "BuildCraft"
url = "https://mod-buildcraft.com/maven"
}
maven {
name = "HWYLA"
url = "http://tehnut.info/maven"
}
maven {
name = "IC2"
url = "http://maven.ic2.player.to/"
}
maven {
name = "Cyclops Repo"
url = "https://dl.bintray.com/cyclopsmc/dev/"
}
maven {
name = "OpenComputers"
url = "http://maven.cil.li/"
}
maven {
// location of the maven that hosts JEI files
name = "Progwml6 maven"
url = "http://dvs1.progwml6.com/files/maven"
}
maven {
// location of a maven mirror for JEI files, as a fallback
name = "ModMaven"
url = "modmaven.k-4u.nl"
}
}
apply plugin: 'net.minecraftforge.gradle.forge'
version = "${minecraft_version}-${mod_version}"
group= "ecomod"
archivesBaseName = "ecomod"
sourceCompatibility = targetCompatibility = "1.8"
compileJava {
sourceCompatibility = targetCompatibility = "1.8"
}
minecraft {
version = "${forge_version}"
runDir = "run"
mappings = "snapshot_20180114"
makeObfSourceJar = false
}
jar {
manifest {
attributes 'FMLCorePluginContainsFMLMod': 'true'
attributes 'FMLAT': 'ecomod_at.cfg'
attributes 'FMLCorePlugin': 'ecomod.asm.EcomodLoadingPlugin'
}
}
task deobfJar(type: Jar) { // Generate deobfuscated
from sourceSets.main.output
classifier = 'deobf'
}
tasks.build.dependsOn('deobfJar')
artifacts {
archives deobfJar
archives jar
}
dependencies {
deobfCompile "cofh:RedstoneFlux:${redstoneflux_version}"
compileOnly "com.mod-buildcraft:buildcraft-api:${buildcraft_version}"
compileOnly "mcp.mobius.waila:Hwyla:${waila_version}"
compileOnly "net.industrial-craft:industrialcraft-2:${ic2_version}:dev"
compileOnly "li.cil.oc:OpenComputers:${oc_version}:api"
compile "org.cyclops.commoncapabilities:CommonCapabilities:${commoncaps_version}"
// compile against the JEI API but do not include it at runtime
deobfProvided "mezz.jei:jei_${jei_version}:api"
// at runtime, use the full JEI jar
runtime "mezz.jei:jei_${jei_version}"
}
processResources
{
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
expand 'version':project.version, 'mcversion':project.minecraft.version
}
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}