1)maven安装
一般我们从github、码云(https://gitee.com)上获取代码后,实际上我们并没有一个版本管理工具来用来获取(get)、提交(commit and push)代码的工具,因此需要使用一个代码提交管理工具,maven是这类工具中比较好的工具。
声明:maven安装请参考:《》
备注:本地已经安装好了maven,安装目录为:D:\Work\Java\apache-maven-3.5.0-bin\apache-maven-3.5.02)给idea从github、码云等获取到的项目绑定 maven:
3)修改pom.xml,添加资源库管理插件配置(可忽略):
12 3 7scala-tools.org 4Scala-Tools Maven2 Repository 5http://scala-tools.org/repo-releases 6
4)配置远程中央仓库:
一般情况下可以配置为国外的远程中央仓库,但是在国内从国外远程中央仓库下载jar包的速度比较差。如果国内的话,建议使用阿里的远程中央仓库(下载速度快)。配置阿里的远程中央仓库有两种方案:
配置方式一:conf\setting.xml12 3 8alimaven 4aliyun maven 5http://maven.aliyun.com/nexus/content/groups/public/ 6central 7
配置方式二:
在项目的pom.xml中配置:
12 3 13sonatype-nexus-snapshots 4Sonatype Nexus Snapshots 5http://maven.aliyun.com/nexus/content/groups/public 67 9false 810 12true 11