Maven问题:Downloading from central: https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-a

今天在使用IDEA创建Maven的webapp时遇见这样一个不叫问题的问题:
Downloading from central: https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-archetype-plugin/maven-metadata.xml

很奇怪,我的maven仓库配置了私有库,,并且在maven setting.xml中配置了mirror(阿里云的镜像),但是,经常会遇到执行mvn命令的时候,会提醒,下载不下来。
Maven问题:Downloading from central: https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-a_第1张图片
解决方式:在项目的pom.xml中添加如下一段代码:

<repositories>
        <repository>
            <id>central</id>
            <url>http://host:port/content/groups/public</url>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>central</id>
            <url>http://host:port/content/groups/public</url>
        </pluginRepository>
    </pluginRepositories>

直接放在project下:如图:
Maven问题:Downloading from central: https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-a_第2张图片
重新build,即可。

你可能感兴趣的:(Java)