首页 > 代码库 > idea创建maven项目慢的解决方案

idea创建maven项目慢的解决方案

1.创建项目的时候添加参数

archetypeCatalog=internal

archetypeCatalog表示插件使用的archetype元数据,不加这个参数时默认为remote,

local,即中央仓库archetype元数据,由于中央仓库的archetype太多了,所以导致很慢,指定internal来表示仅使用内部元数据。

2.修改镜像

加入 阿里云的一个中央仓库

 <mirror>
    <id>alimaven</id>
    <mirrorOf>central</mirrorOf>
    <name>aliyun maven</name>            
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url> </mirror>

即修改settings.xml文件,加入上面的配置即可

 

idea创建maven项目慢的解决方案