-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
199 lines (168 loc) · 4.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
buildscript {
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
repositories {
mavenCentral()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
maven {
name = "sonatype"
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
name = "gradle plugins"
url = "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
classpath "gradle.plugin.com.matthewprenger:CurseGradle:1.0.7"
}
}
apply plugin: 'scala'
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'com.matthewprenger.cursegradle'
file "build.properties" withReader {
def prop = new Properties()
prop.load(it)
ext.config = new ConfigSlurper().parse prop
}
if (project.hasProperty('forgeOverride')) {
config.forge.version = forgeOverride
}
if (project.hasProperty('buildnum')) {
ext.simpleVersion = "${config.covers.version}.${project.buildnum}"
} else {
ext.simpleVersion = "${config.covers.version}-DEV"
}
version = simpleVersion + '-mc' + config.minecraft.version
group = "net.bdew"
archivesBaseName = "covers"
minecraft {
version = "${config.minecraft.version}-${config.forge.version}"
mappings = "${config.minecraft.mappings}"
useDepAts = true
makeObfSourceJar = false
replace("BDLIB_VER", config.bdlib.version)
replace("COVERS_VER", simpleVersion.toString())
}
repositories {
mavenCentral()
maven {
name = "bdew"
url = "https://jenkins.bdew.net/maven"
}
maven {
name "JEI"
url "http://dvs1.progwml6.com/files/maven"
}
maven {
name "waila"
url "http://mobiusstrip.eu/maven"
}
maven {
name "MCMultipart"
url "http://maven.amadornes.com/"
}
}
dependencies {
compile "net.bdew:bdlib:${config.bdlib.version}-mc${config.minecraft.version}:dev"
deobfCompile "mezz.jei:jei_${config.minecraft.version}:${config.jei.version}"
// deobfCompile "mcp.mobius.waila:Waila:${config.waila.version}"
deobfCompile "MCMultiPart:MCMultiPart:${config.mcmultipart.version}:universal"
}
import org.apache.tools.ant.filters.ReplaceTokens
sourceSets {
main {
scala {
srcDir 'src'
}
resources {
srcDir 'resources'
}
}
}
processResources {
inputs.property "tokens", minecraft.replacements
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
filter(ReplaceTokens, tokens: minecraft.replacements)
}
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}
task apiJar(type: Jar, dependsOn: 'classes') {
from(sourceSets.main.output) {
include 'net/bdew/covers/api/**'
}
extension = 'jar'
classifier = 'api'
}
task sourceJarReal(type: Jar) {
// FG has a task named sourceJar that seems to be borked
classifier "sources"
}
task deobfJar(type: Jar) {
from sourceSets.main.output
classifier "dev"
duplicatesStrategy "exclude"
exclude "**/*.psd"
}
jar {
exclude "**/*.psd"
}
afterEvaluate { project ->
// Fudge the inputs of api/source jars so we get the version after replacements
tasks.getByPath(":sourceJarReal").from(tasks.getByPath(":sourceMainScala").outputs.files)
tasks.getByPath(":apiJar").from(tasks.getByPath(":sourceMainScala").outputs.files, {
include 'net/bdew/covers/api/**'
})
}
artifacts {
archives sourceJarReal
archives deobfJar
archives apiJar
}
apply plugin: 'maven-publish'
publishing {
publications {
maven(MavenPublication) {
artifact deobfJar
artifact sourceJarReal
artifact apiJar
}
}
repositories {
maven {
url "file://var/www/maven"
}
}
}
curseforge {
apiKey = project.hasProperty("curseForgeApiKey") ? project.curseForgeApiKey : ""
project {
id = config.curseforge.id
releaseType = "alpha"
changelog = project.hasProperty("changelog") ? project.changelog : "No changelog available"
addGameVersion config.minecraft.version
mainArtifact(jar) {
displayName = "Covers ${simpleVersion} (MC ${config.minecraft.version})"
}
addArtifact(deobfJar) {
displayName = "Covers ${simpleVersion} Deobfuscated (MC ${config.minecraft.version})"
}
addArtifact(sourceJarReal) {
displayName = "Covers ${simpleVersion} Source (MC ${config.minecraft.version})"
}
relations {
requiredLibrary 'bdlib'
requiredLibrary 'mcmultipart'
optionalLibrary 'waila'
optionalLibrary 'just-enough-items-jei'
}
}
}