mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2024-11-15 15:03:54 +01:00
491d134edf
- Use 2 spaces for indents yaml - Move setupTestMod to PlatformExtension - Allow specifying the sourceSet for the testMod artifact - Rename things to camelCase - Use rootCompile from transitiveSourceSets for the testMod source sets - Use a blanket remapTestModJar task in the gh actions build
93 lines
2.2 KiB
Plaintext
93 lines
2.2 KiB
Plaintext
plugins {
|
|
idea
|
|
java
|
|
`maven-publish`
|
|
id("dev.architectury.loom")
|
|
id("flywheel.subproject")
|
|
id("flywheel.platform")
|
|
}
|
|
|
|
val api = sourceSets.create("api")
|
|
val lib = sourceSets.create("lib")
|
|
val backend = sourceSets.create("backend")
|
|
val stubs = sourceSets.create("stubs")
|
|
val main = sourceSets.getByName("main")
|
|
val testMod = sourceSets.create("testMod")
|
|
|
|
transitiveSourceSets {
|
|
compileClasspath = main.compileClasspath
|
|
|
|
sourceSet(api) {
|
|
rootCompile()
|
|
}
|
|
sourceSet(lib) {
|
|
rootCompile()
|
|
compile(api)
|
|
}
|
|
sourceSet(backend) {
|
|
rootCompile()
|
|
compile(api, lib)
|
|
}
|
|
sourceSet(stubs) {
|
|
rootCompile()
|
|
}
|
|
sourceSet(main) {
|
|
// Don't want stubs at runtime
|
|
compile(stubs)
|
|
implementation(api, lib, backend)
|
|
}
|
|
sourceSet(testMod) {
|
|
rootCompile()
|
|
}
|
|
|
|
createCompileConfigurations()
|
|
}
|
|
|
|
platform {
|
|
commonProject = project(":common")
|
|
compileWithCommonSourceSets(api, lib, backend, stubs, main)
|
|
setupLoomMod(api, lib, backend, main)
|
|
setupLoomRuns()
|
|
setupFatJar(api, lib, backend, main)
|
|
setupTestMod(testMod)
|
|
}
|
|
|
|
jarSets {
|
|
mainSet.publish(platform.modArtifactId)
|
|
create("api", api, lib).apply {
|
|
addToAssemble()
|
|
publish(platform.apiArtifactId)
|
|
|
|
configureJar {
|
|
manifest {
|
|
attributes("Fabric-Loom-Remap" to "true")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
defaultPackageInfos {
|
|
sources(api, lib, backend, main)
|
|
}
|
|
|
|
loom {
|
|
mixin {
|
|
useLegacyMixinAp = true
|
|
add(main, "flywheel.refmap.json")
|
|
add(backend, "backend-flywheel.refmap.json")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
modImplementation("net.fabricmc:fabric-loader:${property("fabric_loader_version")}")
|
|
modApi("net.fabricmc.fabric-api:fabric-api:${property("fabric_api_version")}")
|
|
|
|
modCompileOnly("maven.modrinth:sodium:${property("sodium_version")}")
|
|
|
|
"forApi"(project(path = ":common", configuration = "commonApiOnly"))
|
|
"forLib"(project(path = ":common", configuration = "commonLib"))
|
|
"forBackend"(project(path = ":common", configuration = "commonBackend"))
|
|
"forStubs"(project(path = ":common", configuration = "commonStubs"))
|
|
"forMain"(project(path = ":common", configuration = "commonImpl"))
|
|
}
|