如果不懂如何搭建本地maven仓库,可以参考我这篇文章:
https://blog.csdn.net/qq15577969/article/details/103560865
第一步、在IntelliJ IDEA菜单栏 ,File → Settings
第二步、设置maven本地仓库的路径和配置文件路径,然后点“apply”或者“ok”即可
Maven使用阿里云镜像和jdk1.8设置
打开maven配置文件,D:\maven\apache-maven-3.6.3\conf\settings.xml,在<settings></settings>标签里粘贴下方配置代码即可:
<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
</profiles>