forked from TwelveIterationMods/Waystones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (37 loc) · 1.3 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
subprojects {
apply plugin: 'java'
java.toolchain.languageVersion = JavaLanguageVersion.of(java_version)
jar {
manifest {
attributes([
"Specification-Title": mod_id,
"Specification-Vendor": "BlayTheNinth",
"Specification-Version": "1",
"Implementation-Title": project.name,
"Implementation-Version": project.jar.archiveVersion,
"Implementation-Vendor": "BlayTheNinth",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
"MixinConfigs": mod_id + ".mixins.json"
])
}
}
repositories {
mavenCentral()
maven { url "https://www.cursemaven.com" }
maven {
url "https://maven.pkg.github.com/ModdingForBlockheads/Balm"
credentials {
username project.findProperty("gpr.user") ?: System.getenv("GPR_USERNAME")
password project.findProperty("gpr.key") ?: System.getenv("GPR_TOKEN")
}
}
// For JEI
maven { url "https://dvs1.progwml6.com/files/maven/" }
// For Cloth Config
maven { url "https://maven.shedaniel.me/" }
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = 'UTF-8'
it.options.release = java_version as int
}
}