forked from Angry-Pixel/The-Betweenlands
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
110 lines (94 loc) · 2.53 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
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'
}
}
apply plugin: 'forge'
project.ext.buildnumber = ''
if (System.getenv().BUILD_NUMBER) project.buildnumber = '-' + System.getenv().BUILD_NUMBER
version = getVersionFromJava() + project.buildnumber
group = 'net.angrypixel'
archivesBaseName = 'TheBetweenlands'
sourceCompatibility = targetCompatibility = '1.7'
minecraft {
version = '1.7.10-10.13.4.1558-1.7.10'
runDir = 'minecraft'
replace '${version}', project.version
replace '/*!*/true/*!*/', 'false'
}
sourceSets {
main {
output.resourcesDir = output.classesDir
java {
srcDir 'java'
}
resources {
srcDir 'resources'
}
}
}
repositories {
mavenCentral()
maven {
name = 'ilexiconn'
url = 'http://maven.ilexiconn.net/'
}
}
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'
}
}
jar {
classifier = 'universal'
manifest {
attributes ('FMLCorePlugin': 'thebetweenlands.core.TheBetweenlandsLoadingPlugin')
attributes ('FMLCorePluginContainsFMLMod': 'true')
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'src'
from sourceSets.main.allSource
}
task devJar(type: Jar) {
classifier = 'dev'
from sourceSets.main.output
}
artifacts {
archives sourcesJar, devJar
}
String getVersionFromJava() {
String major = "0";
String revision = "0";
String patch = "0";
String prefix = "public static final String VERSION = \"";
File file = file("java/thebetweenlands/lib/ModInfo.java")
file.eachLine { String s ->
s = s.trim();
if (s.startsWith(prefix)) {
s = s.substring(prefix.length(), s.length() - 2);
String[] pts = s.split("\\.");
major = pts[0];
revision = pts[1];
patch = pts[2];
}
}
return "$major.$revision.$patch";
}