MrCrayfish / MrCrayfishFurnitureMod-Refurbished

The next generation of MrCrayfish's Furniture Mod, written from the ground up with brand new models.
https://www.curseforge.com/minecraft/mc-mods/refurbished-furniture
MIT License
29 stars 10 forks source link

:bug: Fixed undocumented reference of environment variable `LOCAL_MAVEN`. #36

Open qyl27 opened 6 days ago

qyl27 commented 6 days ago

LOCAL_MAVEN was used in buildSrc/src/main/groovy/multiloader-common.gradle when environment variable CI wasn't set, but it was not mentioned in README.md.
I replaced it with mavenLocal(), which was built-in in Gradle.
Also, if we want to specify the location of mavenLocal, we can use the system property named maven.repo.local.

Reference: https://docs.gradle.org/current/kotlin-dsl/gradle/org.gradle.api.artifacts.dsl/-repository-handler/maven-local.html