如果你的项目创建都会卡maven的话说明目前你关联的还是maven初始库,后续pom配置的包也可能会极大拖慢maven构建项目的速度,建议更换更快的镜像源
这里以阿里云镜像源为示例,可以自行搜索其他镜像添加
如果没有找到setting.xml可自行创建,idea会自动识别
如果是默认idea自带的maven不知道仓库位置的话话可以通过设置里搜索maven找到对应配置文件路径
<mirror>
<id>alimavenid>
<name>aliyun mavenname>
<url>http://maven.aliyun.com/nexus/content/groups/public/url>
<mirrorOf>centralmirrorOf>
mirror>
如果没有配置文件的话可以自行创建一个settings.xml
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 https://maven.apache.org/xsd/settings-1.2.0.xsd">
<pluginGroups>
pluginGroups>
<proxies>
proxies>
<servers>
servers>
<mirrors>
<mirror>
<id>alimavenid>
<name>aliyun mavenname>
<url>http://maven.aliyun.com/nexus/content/groups/public/url>
<mirrorOf>centralmirrorOf>
mirror>
mirrors>
<profiles>
profiles>
settings>