forked from mortuusars/Exposure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
159 lines (138 loc) · 4.28 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
150
151
152
153
154
155
156
157
158
159
plugins {
id "architectury-plugin" version "3.4-SNAPSHOT"
id "dev.architectury.loom" version "1.6-SNAPSHOT" apply false
id "me.shedaniel.unified-publishing" version "0.1.+"
}
architectury {
minecraft = rootProject.minecraft_version
}
subprojects {
apply plugin: "dev.architectury.loom"
loom {
silentMojangMappingsLicense()
runs {
client {
vmArgs '-XX:+AllowEnhancedClassRedefinition', '-XX:HotswapAgent=fatjar'
}
}
}
dependencies {
minecraft "com.mojang:minecraft:${rootProject.minecraft_version}"
mappings loom.layered() {
officialMojangMappings()
parchment("org.parchmentmc.data:parchment-${parchment_version}@zip")
}
modCompileOnlyApi("mezz.jei:jei-${minecraft_version}-common-api:${jei_version}")
modCompileOnlyApi("curse.maven:jade-324717:${jade_forge_id}")
modCompileOnly "dev.emi:emi-xplat-intermediary:${emi_version}:api"
}
}
allprojects {
apply plugin: "java"
apply plugin: "architectury-plugin"
apply plugin: "maven-publish"
base {
archivesName = "${mod_id}-${minecraft_version}"
}
version = rootProject.mod_version
group = rootProject.mod_group_id
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.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
maven {
name = 'ParchmentMC'
url = 'https://maven.parchmentmc.org'
}
maven {
// location of the maven that hosts JEI files before January 2023
name = "Progwml6's maven"
url = "https://dvs1.progwml6.com/files/maven/"
}
maven {
name = 'tterrag maven'
url = 'https://maven.tterrag.com/'
}
maven {
// location of the maven that hosts JEI files since January 2023
name = "Jared's maven"
url = "https://maven.blamejared.com/"
}
maven {
// location of a maven mirror for JEI files, as a fallback
name = "ModMaven"
url = "https://modmaven.dev"
}
maven {
url = "https://cursemaven.com"
}
maven {
url "https://maven.shedaniel.me"
} // REI
maven {
// Shedaniel's maven (Architectury API)
url = "https://maven.architectury.dev"
content {
includeGroup "dev.architectury"
}
}
maven {
// saps.dev Maven (KubeJS and Rhino)
url = "https://maven.saps.dev/releases"
content {
includeGroup "dev.latvian.mods"
}
}
// EMI
maven {
name = "TerraformersMC"
url = "https://maven.terraformersmc.com/"
}
}
dependencies {
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
options.release = 17
}
java {
withSourcesJar()
}
}
/**
* Gets the first part (topmost) of a changelog file.
* Expects it to be in the following format:
* [
* ## latest version
* changes
*
* ## older version
* changes
* ]
* Will return an empty string if failed.
*/
def getLatestVersionChangelog() {
def changelogFileName = 'CHANGELOG.md'
def changelogFile = file(changelogFileName)
if (changelogFile.exists()) {
def changelogContent = changelogFile.text
def changelogParts = changelogContent.split(/(?m)^##\s/)
if (changelogParts.size() > 1) {
return "## " + changelogParts[1].trim() // First part will always be second in the list
} else {
println("[WARN] Changelog does not contain any versions.")
return ""
}
} else {
println("[WARN] Changelog file <${changelogFileName}> does not exist.")
return ""
}
}
project.ext.changelog = getLatestVersionChangelog()
task printLatestVersionChangelog {
doLast {
println project.changelog
}
}