mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-23 16:49:10 +00:00
Patch version 6.4.1 (#435)
* Bump version to 6.4.1 * fix fabric dev env * Invert exposed ore logic (#433) * Invert exposed ore logic * Bump ore addon version * Use logger in Gradle over println (#434) * Log info instead of println in gradle scripts * Missed buildSrc printlns --------- Co-authored-by: Zoë <duplexsys@protonmail.com>
This commit is contained in:
@@ -29,6 +29,8 @@ dependencies {
|
||||
|
||||
modImplementation("cloud.commandframework", "cloud-fabric", Versions.Libraries.cloud)
|
||||
include("cloud.commandframework", "cloud-fabric", Versions.Libraries.cloud)
|
||||
|
||||
modRuntimeOnly("net.fabricmc.fabric-api", "fabric-api", Versions.Fabric.fabricAPI)
|
||||
}
|
||||
|
||||
loom {
|
||||
|
||||
@@ -13,7 +13,7 @@ val dump = tasks.create("dumpDependents") {
|
||||
doFirst {
|
||||
taskSet.forEach {
|
||||
val resource = File(resourcesDir, it.archiveFileName.get())
|
||||
println("Including archive " + it.archiveFileName.orNull + " in directory " + resource.absolutePath)
|
||||
logger.info("Including archive " + it.archiveFileName.orNull + " in directory " + resource.absolutePath)
|
||||
it.archiveFile.get().asFile.copyTo(resource, true)
|
||||
}
|
||||
}
|
||||
@@ -32,6 +32,6 @@ afterEvaluate {
|
||||
}
|
||||
tasks["dumpDependents"].dependsOn(task)
|
||||
taskSet.add(task)
|
||||
println("Merged JAR will incorporate task ${task.name} from platform ${it.name}.")
|
||||
logger.info("Merged JAR will incorporate task ${task.name} from platform ${it.name}.")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user