1. 如何将编写好的项目上传到私服
首先要在 maven-->conf--> settings.xml中配置私服的相关信息:
<servers>
<!--配置远程仓库(私服)--> <server> <id>releases</id> <username>admin</username> <password>admin123</password> </server> <server> <id>snapshots</id> <username>admin</username> <password>admin123</password> </server>
</servers>
然后在将要上传的maven项目中的pom.xml文件中添加如下配置,其中 ip 地址是私服服务器的 ip
<distributionManagement>
<repository>
<id>releases</id>
<url>http://192.168.132.125:8081/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<url>http://192.168.132.125:8081/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
最后需要在maven项目中使用desploy命令,进行项目部署即可。项目就会上传到私服。
2. 如何从私服中下载项目
首先需要在 maven-->conf--> settings.xml中配置私服的相关配置
<profiles>
<!-- 从私服下载jar包配置 -->
<profile>
<!--profile的id -->
<id>dev</id>
<repositories>
<repository>
<!--仓库id,repositories可以配置多个仓库,保证id不重复 -->
<id>nexus</id>
<!--仓库地址,即nexus仓库组的地址 -->
<url>http://localhost:8081/nexus/content/groups/public/</url>
<!--是否下载releases构件 -->
<releases>
<enabled>true</enabled>
</releases>
<!--是否下载snapshots构件 -->
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<!-- 插件仓库,maven的运行依赖插件,也需要从私服下载插件 -->
<pluginRepository>
<!-- 插件仓库的id不允许重复,如果重复后边配置会覆盖前边 -->
<id>public</id>
<name>Public Repositories</name>
<url>http://localhost:8081/nexus/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<!-- 从私服下载jar包配置进行激活 -->
<activeProfiles>
<!--activeProfile的值是配置profile标签的id -->
<activeProfile>dev</activeProfile>
</activeProfiles>
备注:从私服中下载项目和 jar 的配置是一样的。
在开发项目的pom.xml中指定将要在私服中下载的项目的坐标。当开发项目运行时,从本地仓库找不到依赖的项目,会自动从私服中下载,并添加到本地仓库。
<dependencies>
<dependency>
<groupId>com.itheima</groupId>
<artifactId>maven_day02_dao</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>