Quarkus: Failure to find io.quarkus:quarkus-maven-plugin:jar 📎
mvn package
/ mvn compile quarkus:dev
:
Plugin io.quarkus:quarkus-maven-plugin:[VERSION].Final or one of its dependencies could not be resolved: Failure to find io.quarkus:quarkus-maven-plugin:jar:1.7.0.Final in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced
The Apache Maven'n -U
option (Forces a check for missing releases and updated snapshots on remote repositories
) solves the problem:
mvn -U io.quarkus:quarkus-maven-plugin:1.7.0.Final:create
mvn -U clean package