generated from JamCoreModding/multi-loader-template-mod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
89 lines (75 loc) · 2.55 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
plugins {
id "fabric-loom" version "1.3-SNAPSHOT" apply(false)
id "net.minecraftforge.gradle" version "[6.0,6.2)" apply(false)
id "org.spongepowered.gradle.vanilla" version "0.2.1-SNAPSHOT" apply(false)
id "org.spongepowered.mixin" version "0.7-SNAPSHOT" apply(false)
id "me.shedaniel.unified-publishing" version "0.1.+" apply(false)
id "com.github.breadmoirai.github-release" version "2.4.1"
}
if (System.getenv("GITHUB_TOKEN") != null) {
githubRelease {
token(System.getenv("GITHUB_TOKEN"))
owner("JamCoreModding")
repo("shut-up-gl-error")
tagName(project.version)
releaseName("V${project.version} [${minecraft_version}]")
body(project.rootProject.file("CHANGELOG.md").text)
draft(false)
if (project.branch != null) {
targetCommitish(project.branch)
}
}
}
tasks.create("publish") {
dependsOn("githubRelease")
dependsOn("fabric:publishUnified")
dependsOn("forge:publishUnified")
}
subprojects {
apply plugin: "java"
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
java.withSourcesJar()
jar {
from(rootProject.file("LICENSE")) {
rename { "${it}_${mod_name}" }
}
manifest {
attributes([
'Specification-Title' : mod_name,
'Specification-Version' : project.jar.archiveVersion,
'Implementation-Title' : project.name,
'Implementation-Version' : project.jar.archiveVersion,
'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 {
mavenCentral()
maven {
name = "Sponge / Mixin"
url = "https://repo.spongepowered.org/repository/maven-public/"
}
maven {
name = "Modrinth Maven"
url = "https://api.modrinth.com/maven"
}
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
it.options.getRelease().set(17)
}
processResources {
filesMatching(["pack.mcmeta", "fabric.mod.json", "mods.toml", "*.mixins.json"]) {
expand project.properties
}
}
tasks.withType(GenerateModuleMetadata).configureEach {
enabled = false
}
}