local cache is now under the root project
All checks were successful
Publish to snapshot maven / build (push) Successful in 22s

to make intellij happy
This commit is contained in:
moehreag 2024-06-10 23:16:33 +02:00
parent 1bf8e83255
commit 47effc79f2

View file

@ -40,7 +40,7 @@ class PhytotelmaPlugin : Plugin<Project> {
println("> Applying FrogMC Gradle Plugin") println("> Applying FrogMC Gradle Plugin")
globalCacheDir = project.gradle.gradleUserHomeDir.resolve("caches/phytotelma/").toPath() globalCacheDir = project.gradle.gradleUserHomeDir.resolve("caches/phytotelma/").toPath()
globalCacheDir.createDirectories() globalCacheDir.createDirectories()
localCacheDir = project.projectDir.resolve(".gradle/phytotelma/cache/").toPath() localCacheDir = project.rootDir.resolve(".gradle/phytotelma/cache/").toPath()
localCacheDir.createDirectories() localCacheDir.createDirectories()
project.plugins.let { project.plugins.let {