This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
149 lines (129 loc) · 5.39 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
plugins {
id "architectury-plugin" version "3.4-SNAPSHOT"
id "dev.architectury.loom" version "0.12.0-SNAPSHOT" apply false
id 'io.github.juuxel.loom-quiltflower' version '1.8.0' apply false
}
architectury {
minecraft = rootProject.minecraftVersion
}
subprojects {
apply plugin: "dev.architectury.loom"
apply plugin: "io.github.juuxel.loom-quiltflower"
repositories {
// Add repositories to retrieve artifacts from in here.
// You should only use this when depending on other mods because Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// For more information about repositories: https://docs.gradle.org/current/userguide/declaring_repositories.html
maven {
name = 'ParchmentMC'
url = 'https://maven.parchmentmc.org'
}
maven {
name = "Fuzss Mod Resources"
url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven/"
}
maven {
name = 'Ladysnake Mods'
url = 'https://ladysnake.jfrog.io/artifactory/mods'
}
maven {
name = 'Curse Maven'
url = 'https://cursemaven.com'
}
maven {
name = 'Terraformers'
url = 'https://maven.terraformersmc.com/'
}
maven {
name = 'NucleoidMC'
url = 'https://maven.nucleoid.xyz'
}
}
loom {
silentMojangMappingsLicense()
mixin {
defaultRefmapName = "${modId}.refmap.json"
}
}
dependencies {
minecraft "com.mojang:minecraft:${rootProject.minecraftVersion}"
mappings loom.layered() {
officialMojangMappings()
parchment("org.parchmentmc.data:parchment-${minecraftVersion}:${parchmentMappingsVersion}@zip")
}
}
}
allprojects {
apply plugin: "java"
apply plugin: "architectury-plugin"
apply plugin: "maven-publish"
archivesBaseName = rootProject.archivesBaseName
version = rootProject.modVersion
group = rootProject.modMavenGroup
int javaVersion = rootProject.minJavaVersion as Integer
tasks.withType(JavaCompile) {
// Ensure that the encoding is set to UTF-8, no matter what the system default is.
// This fixes some edge cases with special characters not displaying correctly.
// See: http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
// If Javadoc is generated, this must be specified in that task too.
options.encoding = "UTF-8"
options.release = javaVersion
}
tasks.withType(Javadoc) {
// Ensure that the encoding is set to UTF-8, no matter what the system default is.
// This fixes some edge cases with special characters not displaying correctly.
// See: http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
options.encoding = "UTF-8"
// Silence missing javadoc comments.
options.addStringOption("Xdoclint:none", "-quiet")
}
tasks.withType(Jar).configureEach {
// Add the license to the jar
from(file("LICENSE.md")) {
into "META-INF"
}
// Populate manifest attributes.
manifest {
attributes([
"Specification-Title" : modName,
'Specification-Version' : modVersion,
"Specification-Vendor" : modAuthor,
'Implementation-Title' : modName,
'Implementation-Version' : modVersion,
'Implementation-Vendor' : modAuthor,
'Implementation-Timestamp' : new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
'Implementation-Timestamp-Milli' : System.currentTimeMillis(),
'Implementation-URL' : modSourceUrl,
'Built-On-Java' : "${System.getProperty('java.vm.version')} (${System.getProperty('java.vm.vendor')})",
'Built-On-Minecraft' : minecraftVersion
])
}
group 'jar'
}
tasks.withType(GenerateModuleMetadata) {
// 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.
enabled = false
}
java {
toolchain.languageVersion = JavaLanguageVersion.of(javaVersion)
withSourcesJar()
withJavadocJar()
}
}
import java.util.regex.Pattern
/**
* This task is used to get the next version number.
* @param puzzlesLibVersion The current version number.
* @return The next version number.
* @see <a href="https://github.com/Fuzss/universalenchants/blob/1.19/build.gradle">Universal Enchants' Buildscript</a>
*/
def static getNextVersion(String puzzlesVersion) {
def puzzlesVersionMatcher = Pattern.compile("(\\d+\\.\\d+)").matcher(puzzlesVersion)
puzzlesVersionMatcher.find()
def currentVersion = puzzlesVersionMatcher.group(1)
return currentVersion
.substring(0, currentVersion.indexOf(".") + 1)
.concat(String.valueOf(Integer.parseInt(
currentVersion.substring(currentVersion.indexOf(".") + 1, currentVersion.size())) + 1
))
}