This message was deleted.
# community-support
s
This message was deleted.
p
Ah, that won't work I guess, as the framework compileJava task is also not triggered when this JAR (snapshot) is updated, so the input change isn't detected anyway.
I ran a build scan and the theme JAR is in the dependency list for the framework compileJava task, so I guess the question is why doesn't Gradle detect that a new snapshot is available and rerun the compilation?
Hmmm... I thought the gradle cache might be the issue so I tried to disable it, but this doesn't seem to have any effect:
Copy code
configurations.all {
  resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
v
Hard to guess without seeing the build. Can you maybe provide an MCVE?