forked from rocketman10404/tabbychat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
107 lines (100 loc) · 2.82 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
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: 'fml'
ext.set("revision", getRevision())
ext.set("build", getBuildNo())
version = "1.11.1." + revision
group = "acs.tabbychat"
archivesBaseName = "TabbyChat"
minecraft{
version = "1.7.10-7.10.22.956"
runDir = "eclipse/assets"
replace "@@VERSION@@", project.version
}
processResources{
// this will ensure that this task is redone when the versions change.
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
inputs.property "revision", project.build
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info', 'litemod.json'
// replace version and mcversion
expand 'version':project.version, 'mcversion':project.minecraft.version, 'revision':project.build
}
// copy everything else, thats not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info', 'litemod.json'
}
}
configurations{
customCompile
}
dependencies{
customCompile 'net.sf.jazzy:jazzy:0.5.2-rtext-1.4.1-2'
compile configurations.customCompile
}
jar{
from sourceSets.api.output
from ( configurations.customCompile.collect { it.isDirectory() ? it : zipTree(it)}) { exclude 'META-INF/**' }
appendix = minecraft.version
exclude 'acs/tabbychat/core/LiteModTabbyChat.class', 'litemod.json'
}
task jarApi(type: Jar){
from sourceSets.api.output
appendix = minecraft.version
classifier = "api"
}
task jarDev(type: Jar){
from sourceSets.main.output
from sourceSets.api.output
appendix = minecraft.version
classifier = "dev"
}
task jarSrc(type: Jar){
from sourceSets.main.allSource
from sourceSets.api.allSource
appendix = minecraft.version
classifier = "src"
}
artifacts{
archives jarApi
archives jarDev
archives jarSrc
}
String getBuildNo(){
return git("rev-list", "HEAD", "--count")
}
String getRevision(){
String tag = git("describe", "--tags", "--abbrev=0")
return git("rev-list", tag + "..HEAD", "--count")
}
import static net.minecraftforge.gradle.dev.DevBasePlugin.*
String git(String[] args){
try{
return runGit(project, project.getProjectDir(), args)
}catch(Exception e){
return null
}
}
apply plugin: 'liteloader'
jarLiteloader{
from sourceSets.api.output
from (configurations.customCompile.collect { it.isDirectory() ? it : project.zipTree(it)}) { exclude 'META-INF/**' }
appendix = minecraft.version
exclude 'acs/tabbychat/core/TabbyChatMod.class', 'mcmod.info'
}