-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
104 lines (90 loc) · 3.21 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
plugins {
id 'fabric-loom' version '1.7-SNAPSHOT' apply(false)
}
subprojects {
apply plugin: 'java'
java.toolchain.languageVersion = JavaLanguageVersion.of(21)
java.withSourcesJar()
// java.withJavadocJar()
jar {
from(rootProject.file("LICENSE")) {
rename { "${it}_${mod_name}" }
}
exclude ".cache"
exclude "**/data/modonomicon/modonomicon/books/**"
exclude "**/data/modonomicon/modonomicon/multiblocks/**"
exclude "**/data/modonomicon/recipe/**"
manifest {
attributes([
'Specification-Title' : mod_name,
'Specification-Vendor' : mod_authors,
'Specification-Version' : '1',
'Implementation-Title' : project.name,
'Implementation-Version' : mod_version,
'Implementation-Vendor' : mod_authors,
'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
'Timestamp' : System.currentTimeMillis(),
'Built-On-Java' : "${System.getProperty('java.vm.version')} (${System.getProperty('java.vm.vendor')})",
'Built-On-Minecraft' : minecraft_version
])
}
}
sourcesJar {
from(rootProject.file("LICENSE")) {
rename { "${it}_${mod_name}" }
}
}
repositories {
maven {
name = 'Sponge / Mixin'
url = 'https://repo.spongepowered.org/repository/maven-public/'
}
maven {
name = "Jei and Patchouli Maven"
url = 'https://maven.blamejared.com'
content {
includeGroup "vazkii.patchouli"
includeGroup "mezz.jei"
}
}
maven {
name = "Fiber Config (Fabric) maven"
url = "https://maven.modmuss50.me/"
content {
includeGroup "me.zeroeightsix"
}
}
maven {
name = "Curse Maven"
url = "https://www.cursemaven.com"
content {
includeGroup "curse.maven"
}
}
}
processResources {
def props = new HashMap<>(project.properties)
def keys = new ArrayList<String>(props.keySet()) //to avoid concurrent modification exception
for (String key : keys) {
if (!(props.get(key) instanceof String) && !(props.get(key) instanceof Integer)) {
props.remove(key)
}
}
if (System.getenv('MOD_VERSION') != null) {
props.put('mod_version', System.getenv('MOD_VERSION'))
}
filesMatching(['pack.mcmeta', 'fabric.mod.json', 'META-INF/mods.toml', 'META-INF/neoforge.mods.toml', '*.mixins.json']) {
expand props
}
getInputs().properties(props)
}
// Disables Gradle's custom module metadata from being published to maven. The
// metadata includes mapped dependencies which are not reasonably consumable by
// other mod developers.
tasks.withType(GenerateModuleMetadata).configureEach {
enabled = false
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}