**一、nexus官网下载安装包
**
https://www.sonatype.com/download-oss-sonatype
二、下载好的tar包上传至服务器
- 解压tar包命令
tar -zxvf ***.tar.gz
- 解压后能看到两个文件夹
nexus-3.20.1-01:
bin下面有一个启动文件nexus,启动命令:
etc下的nexus-default.properties文件可修改端口号
sonatype-work:有一个临时密码文件存放在这,当修改密码后临时密码文件会消失
三、登录页面
http:ip:端口号
- 第一次登录使用临时密码登录后修改密码
- 仓库介绍
四、settings.xml配置及介绍
<server>
<id>nexus</id>
<username>root</username>
<password>zzsroot</password>
</server>
<server>
<id>nexus-releases</id>
<username>root</username>
<password>zzsroot</password>
</server>
<server>
<id>nexus-snapshots</id>
<username>root</username>
<password>zzsroot</password>
</server>
<mirror>
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://192.168.0.172:9090/repository/maven-public/</url>
</mirror>
<profile>
<id>maven-public</id>
<repositories>
<repository>
<!--仓库id,repositories可以配置多个仓库,保证id不重复-->
<id>nexus</id>
<name>maven-public</name>
<!--仓库地址,即nexus仓库组的地址-->
<url>http://192.168.0.172:9090/repository/maven-public/</url>
<!--是否下载releases构件-->
<releases>
<enabled>true</enabled>
</releases>
<!--是否下载snapshots构件-->
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<!-- 插件仓库,maven的运行依赖插件,也需要从私服下载插件 -->
<pluginRepository>
<!-- 插件仓库的id不允许重复,如果重复后边配置会覆盖前边 -->
<id>nexus</id>
<name>maven-public</name>
<url>http://192.168.0.172:9090/repository/maven-public/</url>
<releases>
<enabled>true</enabled>
</releases>
<!--是否下载snapshots构件-->
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
<activeProfiles>
<activeProfile>maven-public</activeProfile>
</activeProfiles>
五、pom.xml配置及介绍
<distributionManagement>
<repository>
<id>nexus-releases</id>
<url>http://192.168.0.172:9090/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<url>http://192.168.0.172:9090/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
六、配置好后打开cmd使用命令测试是否从私服下载jar包
mvn dependency:sources -DdownloadSources=true -DdownloadJavadocs=true
- 如果看到你私服的ip了那么恭喜你配置成功