1.第一种方式,通过setting.xml的方式配置数据源
该文件路径D:IDEapache-maven-3.2.3confsetting.xml
该文件大部分内容都已经注释,我们需要添加如下内容:
<profile> <id>dev</id> <!-- repositories and pluginRepositories here--> <repositories> <repository> <id>nexus-aliyun</id> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> </profile>
</profiles>
<activeProfiles> <activeProfile>dev</activeProfile> </activeProfiles>