-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle.kts
214 lines (181 loc) · 6.87 KB
/
build.gradle.kts
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
import dev.architectury.plugin.ArchitectPluginExtension
import groovy.json.StringEscapeUtils
import net.fabricmc.loom.api.LoomGradleExtensionAPI
import net.fabricmc.loom.task.RemapJarTask
plugins {
java
id("maven-publish")
id("com.teamresourceful.resourcefulgradle") version "0.0.+"
id("dev.architectury.loom") version "1.7-SNAPSHOT" apply false
id("architectury-plugin") version "3.4-SNAPSHOT"
}
architectury {
val minecraftVersion: String by project
minecraft = minecraftVersion
}
subprojects {
apply(plugin = "maven-publish")
apply(plugin = "dev.architectury.loom")
apply(plugin = "architectury-plugin")
val minecraftVersion: String by project
val modId = rootProject.name
val moduleType = project.layout.projectDirectory.asFile.parentFile.name.takeUnless { it == "core" }
val modLoader = project.layout.projectDirectory.asFile.name
val isCommon = modLoader == "common"
val commonPath = when {
isCommon -> project.name
moduleType == null -> ":${rootProject.name}-common"
else -> ":${rootProject.name}-$moduleType-common"
}
val isFabric = modLoader == "fabric"
val fabricLoaderVersion: String by project
val fabricApiVersion: String by project
val modMenuVersion: String by project
val isNeoForge = modLoader == "neoforge"
val neoforgeVersion: String by project
base {
archivesName.set("${project.name}-$minecraftVersion")
}
configure<LoomGradleExtensionAPI> {
silentMojangMappingsLicense()
runs {
named("client") {
name("Test Client")
source(sourceSets.test.get())
}
named("server") {
name("Test Server")
source(sourceSets.test.get())
}
}
}
repositories {
maven(url = "https://maven.architectury.dev/")
maven(url = "https://maven.minecraftforge.net/")
maven(url = "https://maven.resourcefulbees.com/repository/maven-public/")
maven(url = "https://maven.neoforged.net/releases/")
maven(url = "https://kneelawk.com/maven")
maven(url = "https://maven.msrandom.net/repository/root/")
maven(url = "https://prmaven.neoforged.net/NeoForge/pr794") {
content {
includeModule("net.neoforged", "neoforge")
includeModule("net.neoforged", "testframework")
}
}
exclusiveContent {
forRepository {
maven (url = "https://cursemaven.com")
}
filter {
includeGroup("curse.maven")
}
}
mavenLocal()
}
dependencies {
"minecraft"("::$minecraftVersion")
@Suppress("UnstableApiUsage")
"mappings"(project.the<LoomGradleExtensionAPI>().layered {
val parchmentVersion: String by project
officialMojangMappings()
parchment(create(group = "org.parchmentmc.data", name = "parchment-1.20.6", version = parchmentVersion))
})
if (isCommon) {
"modCompileOnly"(group = "tech.thatgravyboat", name = "commonats", version = "2.0")
} else if (System.getProperty("idea.sync.active", false.toString()).toBoolean()) {
compileOnly(project(commonPath, configuration = "namedElements"))
}
if (isFabric) {
"modImplementation"(group = "net.fabricmc", name = "fabric-loader", version = fabricLoaderVersion)
"modApi"(group = "net.fabricmc.fabric-api", name = "fabric-api", version = fabricApiVersion)
"modApi"(group = "com.terraformersmc", name = "modmenu", version = modMenuVersion)
}
if (isNeoForge) {
"neoForge"(group = "net.neoforged", name = "neoforge", version = neoforgeVersion)
}
annotationProcessor(group = "net.msrandom", name = "multiplatform-processor", version = "1.0.7")
compileOnly(group = "net.msrandom", name = "multiplatform-annotations", version = "1.0.0")
}
java {
withSourcesJar()
}
tasks.jar {
archiveClassifier.set("dev")
}
tasks.named<RemapJarTask>("remapJar") {
archiveClassifier.set(null as String?)
}
tasks.processResources {
//duplicatesStrategy = DuplicatesStrategy.EXCLUDE
filesMatching(listOf("META-INF/neoforge.mods.toml", "fabric.mod.json")) {
expand("version" to project.version)
}
}
if (!isCommon) {
configure<ArchitectPluginExtension> {
platformSetupLoomIde()
}
sourceSets {
val commonSourceSets = project(commonPath).sourceSets
val commonMain = commonSourceSets.getByName("main")
getByName("main") {
java.srcDirs(commonMain.java.srcDirs)
resources.srcDirs(commonMain.resources.srcDirs)
}
}
} else {
tasks.compileJava {
options.compilerArgs.add("-AgenerateExpectStubs")
}
}
publishing {
publications {
if (moduleType == "test") return@publications
create<MavenPublication>("maven") {
artifactId = "${project.name}-$minecraftVersion"
from(components["java"])
pom {
url.set("https://github.com/terrarium-earth/$modId")
scm {
connection.set("git:https://github.com/terrarium-earth/$modId.git")
developerConnection.set("git:https://github.com/terrarium-earth/$modId.git")
url.set("https://github.com/terrarium-earth/$modId")
}
licenses {
license {
name.set("MIT")
}
}
}
}
}
repositories {
maven {
setUrl("https://maven.resourcefulbees.com/repository/terrarium/")
credentials {
username = System.getenv("MAVEN_USER")
password = System.getenv("MAVEN_PASS")
}
}
}
}
}
resourcefulGradle {
templates {
register("embed") {
val minecraftVersion: String by project
val version: String by project
val changelog: String = file("changelog.md").readText(Charsets.UTF_8)
val fabricLink: String? = System.getenv("FABRIC_RELEASE_URL")
val forgeLink: String? = System.getenv("FORGE_RELEASE_URL")
source.set(file("templates/embed.json.template"))
injectedValues.set(mapOf(
"minecraft" to minecraftVersion,
"version" to version,
"changelog" to StringEscapeUtils.escapeJava(changelog),
"fabric_link" to fabricLink,
"neoforge_link" to forgeLink,
))
}
}
}