maven设置中设置私服的账号密码
maven的设置一般在用户目录下的".m2"目录下,如果没有可以手动新建"settings.xml",在该文件中的servers标签下新增私服的账号密码:
<server>
<id>snapshots</id>
<username>admin</username>
<password>admin123</password>
</server>
上传到私服
这里有个坑,需要手动指定pom文件的位置,否则上传后pom文件为空
使用以下命令进行上传
mvn deploy:deploy-file -DgroupId=你项目的groupId -DartifactId=你项目的artifactId -Dversion=你项目的版本号 -Dpackaging=jar -Dfile=第一步install目录中你项目jar包的绝对路径 -Durl=http://172.17.162.126:8088/repository/maven-snapshots/ -DpomFile=D:\1.0.0.1-SNAPSHOT\file-client-1.0.0.1-SNAPSHOT.pom -DrepositoryId=rl-nexus-snapshots
在项目中使用
在maven设置中添加私服信息,添加后大概长这个样子:
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>dev</id>
<properties>
<nexus>http://172.17.162.126:8088</nexus>
</properties>
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>rl-nexus-snapshots</id>
<url>http://172.17.162.126:8088/repository/maven-snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>rl-nexus-releases</id>
<url>http://172.17.162.126:8088/repository/maven-release/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>dev</activeProfile>
</activeProfiles>
</settings>
然后就可以在项目中引入了
<dependency>
<groupId>你项目的groupId</groupId>
<artifactId>你项目的artifactId</artifactId>
<version>你项目的版本号</version>
</dependency>