-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
80 lines (65 loc) · 2.14 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
subprojects {
apply plugin: 'java'
java.toolchain.languageVersion = JavaLanguageVersion.of(java_version)
java.withSourcesJar()
java.withJavadocJar()
tasks.withType(GenerateModuleMetadata).tap {
configureEach {
enabled = false // Do not publish dependencies in pom
}
}
configurations {
testImplementation.extendsFrom compileOnly
}
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")
])
if (forge_mixins.toBoolean()) {
attributes([
"MixinConfigs": mod_id + ".mixins.json"
])
}
}
}
repositories {
mavenCentral()
maven {
url "https://www.cursemaven.com"
content {
includeGroup 'curse.maven'
}
}
maven { url "https://maven.twelveiterations.com/repository/maven-public/" }
// For Cloth Config and REI
maven { url "https://maven.shedaniel.me/" }
// For JEI
maven { url "https://dvs1.progwml6.com/files/maven/" }
maven { url "https://modmaven.dev" }
// For WTHIT
maven { url "https://maven.bai.lol" }
// For ModMenu
maven { url "https://maven.terraformersmc.com" }
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = 'UTF-8'
it.options.release = java_version as int
}
tasks.withType(Javadoc).tap {
configureEach {
failOnError false
}
}
if (balm_version.endsWith("SNAPSHOT")) {
configurations.configureEach {
resolutionStrategy.cacheChangingModulesFor 10, 'minutes'
}
}
}