I recently installed a password-protected Artifactory server. The Jenkins server deploys my artifacts to the maven repository on this Artifactory server.
Here's the problem:
New builds are not available at runtime (in IntelliJ) nor in Maven (when created). To update maven, I have to remove artifacts from my local repo.
How can I tell Maven / IntelliJ to always check the latest version?
Even this did nothing:
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
source
share