-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
71 lines (60 loc) · 2.17 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
buildscript {
repositories {
mavenCentral()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
maven {
name = "sonatype"
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT'
}
}
task deps{
project.mkdir("deps")
def wsc = new File('deps/WaslieCore.jar')
new URL('https://dl.dropboxusercontent.com/u/46500170/Forestry%20Extras%202/deps/WaslieCore.jar').withInputStream{ i -> wsc.withOutputStream{ it << i }}
def forestry = new File('deps/Forestry.jar')
new URL('https://dl.dropboxusercontent.com/u/46500170/Forestry%20Extras%202/deps/Forestry.jar').withInputStream{ i -> forestry.withOutputStream{ it << i }}
def botania = new File('deps/Botania.jar')
new URL('https://dl.dropboxusercontent.com/u/46500170/Forestry%20Extras%202/deps/Botania.jar').withInputStream{ i -> botania.withOutputStream{ it << i }}
def mm = new File('deps/ModularMachines.jar')
new URL('https://dl.dropboxusercontent.com/u/46500170/Forestry%20Extras%202/deps/ModularMachines.jar').withInputStream{ i -> mm.withOutputStream{ it << i }}
}
apply plugin: 'forge'
ext.buildnumber = 0
if(System.getenv('BUILD_NUMBER') != null)
project.buildnumber = System.getenv('BUILD_NUMBER')
version = "2-3.1_B${buildnumber}"
group= "ForestryExtras" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "ForestryExtras"
minecraft {
version = "1.7.10-10.13.0.1208"
assetDir = "eclipse/assets"
}
dependencies{
compile files(
'deps/Forestry.jar',
'deps/WaslieCore.jar',
'deps/Botania.jar',
'deps/ModularMachines.jar'
)
}
processResources
{
// 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'
}
}
build.dependsOn deps