Clearing the Cache
As an artifact server Seal only has visibility to those artifacts that are pulled by the build machine. Therefore, if instead of pulling libraries from an artifact server the build machine uses a locally cached copy, the Seal server will be unaware of its usage.
To get an up-to-date snapshot of the packages used as part of your build process, you should first clear your package manager's cache.
Javascript:
For npm run:
npm cache clean --forceFor Yarn v1 run:
yarn cache cleanFor Yarn v2 and later run:
yarn cache clean --allFor pnpm run:
pnpm store prunePython:
For pip run:
pip cache purgeFor Poetry run:
poetry cache clear --allJava:
For Maven run:
mvn dependency:purge-local-repository -DactTransitively=false -DreResolve=falseFor Gradle run:
rm -rf $HOME/.gradle/caches/Go:
For Go run:
go clean -modcacheComposer:
For compose run:
rm -rf vendor/Last updated