Maven:查找工件目录在哪里
Maven: Find where is artifact directory
我遇到了与这个问题相同的错误:When maven says "resolution will not be reattempted until the update interval of MyRepo has elapsed", where is that interval specified?
解决方法是删除特定的工件目录。但是我如何找到它的位置?
运行 mvn clean install -U
建议的 here 对我不起作用。它给出错误:
Could not find artifact <artifact info>... in central (https://repo.maven.apache.org/maven2)
默认本地回购将在
<User_Home>\.m2\repository
你可以检查你的maven settings.xml 看看是否配置了任何自定义目录。
我遇到了与这个问题相同的错误:When maven says "resolution will not be reattempted until the update interval of MyRepo has elapsed", where is that interval specified?
解决方法是删除特定的工件目录。但是我如何找到它的位置?
运行 mvn clean install -U
建议的 here 对我不起作用。它给出错误:
Could not find artifact <artifact info>... in central (https://repo.maven.apache.org/maven2)
默认本地回购将在
<User_Home>\.m2\repository
你可以检查你的maven settings.xml 看看是否配置了任何自定义目录。