forked from Gegy/Statue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
83 lines (76 loc) · 1.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
buildscript {
repositories {
jcenter()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
}
dependencies {
classpath "net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT"
}
}
apply plugin: "net.minecraftforge.gradle.forge"
def mod_file = getModFile()
version = getModField("VERSION", mod_file)
def llibrary_version = getModField("LLIBRARY_VERSION", mod_file)
group = "net.gegy1000"
archivesBaseName = "statue"
sourceCompatibility = targetCompatibility = "1.8"
minecraft {
version = "1.12.2-14.23.3.2655"
runDir = "minecraft"
mappings = "snapshot_20180510"
}
repositories {
mavenCentral()
maven {
url = "https://maven.mcmoddev.com"
}
}
dependencies {
compile "net.ilexiconn:llibrary:$llibrary_version-1.12.2:dev"
}
processResources {
inputs.property "version", project.version
inputs.property "llibrary_version", llibrary_version
from (sourceSets.main.resources.srcDirs) {
include "mcmod.info"
expand "version": project.version, "mcversion": project.minecraft.version, "llibrary_version": llibrary_version
}
from (sourceSets.main.resources.srcDirs) {
exclude "mcmod.info"
}
}
String getModFile() {
String path = ""
FileTree tree = fileTree(dir: 'src/main/java')
tree.include '**/*.java'
tree.visit { element ->
if (element.file.isFile()) {
element.file.eachLine { String s ->
s = s.trim()
if (s.matches("@Mod\\s*\\(.*")) {
path = "src/main/java/$element.relativePath"
}
}
}
}
return path
}
String getModField(String type, String mod_file) {
if (mod_file.length() == 0) {
return ""
}
String field = ""
String prefix = "public static final String $type = \""
File file = file(mod_file)
file.eachLine { String s ->
s = s.trim()
if (s.startsWith(prefix)) {
s = s.substring(prefix.length(), s.length() - 2)
field = s
}
}
return field
}