We have intermittent outages in Artifactoy that we are trying to address. I've found that sometimes the issues go unnoticed because many dependencies are already locally cached. So I've been running the falling in our gradle
java projects:
gradle
./gradlew build --refresh-dependencies
Would these be equivalent in the various build tools? How would something like this be done for an interpreted language like Python?
maven
mvn clean install -U
sbt
sbt update
sbt clean
sbt compile