forked from GTNewHorizons/WitchingGadgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
108 lines (93 loc) · 3.01 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
buildscript {
repositories {
maven {
name = "forge"
url = "https://maven.minecraftforge.net"
}
maven {
name = "sonatype"
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
name = "Scala CI dependencies"
url = "https://repo1.maven.org/maven2/"
}
maven {
name = "jitpack"
url = "https://jitpack.io"
}
}
dependencies {
classpath 'com.github.GTNewHorizons:ForgeGradle:1.2.4'
}
}
apply plugin: 'forge'
version = "1.2.14-GTNH"
group= "blusunrize"
archivesBaseName = "WitchingGadgets-1.7.10"
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = 1.8
targetCompatibility = 1.8
minecraft {
version = "1.7.10-10.13.4.1614-1.7.10"
replaceIn "WitchingGadgets.java"
replace '${version}', project.version
assetDir = "eclipse/assets"
}
jar {
manifest {
attributes 'FMLCorePlugin': 'witchinggadgets.asm.WitchingGadgetsCoreLoader',
'FMLCorePluginContainsFMLMod': 'true'
}
}
repositories {
maven {
name = "gt"
url = "http://gregtech.overminddl1.com/"
}
maven { // YAMCore
name 'UsrvDE'
url "http://jenkins.usrv.eu:8081/nexus/content/repositories/releases/"
}
maven { // TConstruct
name 'DVS1 Maven FS'
url 'http://dvs1.progwml6.com/files/maven'
}
}
dependencies {
compile "com.azanor.baubles:Baubles:1.7.10-1.0.1.10:deobf"
compile "thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev"
compile "twilightforest:twilightforest:1.7.10-2.3.8dev:dev"
compile "codechicken:CodeChickenLib:1.7.10-1.1.3.140:dev"
compile "codechicken:CodeChickenCore:1.7.10-1.0.7.47:dev"
compile "codechicken:NotEnoughItems:1.7.10-1.0.5.120:dev"
compile "eu.usrv:YAMCore:1.7.10+:deobf"
compile "net.sengir.forestry:forestry_1.7.10:4.2.16.64:dev"
compile "mantle:Mantle:1.7.10+:deobf"
compile "mods.railcraft:Railcraft_1.7.10:9.12.3.0:dev"
compileOnly "codechicken:ForgeMultipart:1.7.10-1.2.0.347:dev"
compileOnly "vazkii.botania:Botania:r1.8-250:deobf"
compileOnly "minetweaker:MineTweaker3:1.7.10-3.0.10:dev-full"
compileOnly fileTree("lib/compileOnly")
compile fileTree("lib/compile")
}
processResources
{
// this will ensure that this task is redone when the versions change.
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
// replace version and mcversion
expand 'version':project.version, 'mcversion':project.minecraft.version
}
// copy everything else, thats not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}
sourceSets {
main { output.resourcesDir = output.classesDir }
}