mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-23 11:27:54 +01:00
045b065166
- Move source set bundling/common source set sharing logic into transitiveSourceSets and make it more flexible - Remove commonProject field from platform extension
112 lines
2.8 KiB
Text
112 lines
2.8 KiB
Text
plugins {
|
|
idea
|
|
java
|
|
`maven-publish`
|
|
id("dev.architectury.loom")
|
|
id("flywheel.subproject")
|
|
id("flywheel.platform")
|
|
}
|
|
|
|
val common = ":common"
|
|
val commonProject = project(common)
|
|
|
|
subproject.init("flywheel-fabric", "flywheel_group", "flywheel_version")
|
|
|
|
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()
|
|
|
|
from(commonProject)
|
|
}
|
|
sourceSet(lib) {
|
|
rootCompile()
|
|
compileClasspath(api)
|
|
|
|
from(commonProject)
|
|
}
|
|
sourceSet(backend) {
|
|
rootCompile()
|
|
compileClasspath(api, lib)
|
|
|
|
from(commonProject)
|
|
}
|
|
sourceSet(stubs) {
|
|
rootCompile()
|
|
|
|
from(commonProject)
|
|
}
|
|
sourceSet(main) {
|
|
// Don't want stubs at runtime
|
|
compileClasspath(stubs)
|
|
implementation(api, lib, backend)
|
|
|
|
bundleFrom(commonProject)
|
|
|
|
bundleOutput(api, lib, backend)
|
|
}
|
|
sourceSet(testMod) {
|
|
rootCompile()
|
|
}
|
|
|
|
createCompileConfigurations()
|
|
}
|
|
|
|
platform {
|
|
setupLoomMod(api, lib, backend, main)
|
|
setupLoomRuns()
|
|
setupTestMod(testMod)
|
|
}
|
|
|
|
jarSets {
|
|
mainSet.publish("flywheel-fabric-${project.property("artifact_minecraft_version")}")
|
|
mainSet.outgoing("flywheel")
|
|
|
|
create("api", api, lib).apply {
|
|
addToAssemble()
|
|
publish("flywheel-fabric-api-${project.property("artifact_minecraft_version")}")
|
|
|
|
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 = "apiClasses"))
|
|
"forLib"(project(path = common, configuration = "libClasses"))
|
|
"forBackend"(project(path = common, configuration = "backendClasses"))
|
|
"forStubs"(project(path = common, configuration = "stubsClasses"))
|
|
"forMain"(project(path = common, configuration = "mainClasses"))
|
|
|
|
"forLib"(project(path = common, configuration = "libResources"))
|
|
"forBackend"(project(path = common, configuration = "backendResources"))
|
|
"forMain"(project(path = common, configuration = "mainResources"))
|
|
}
|