标签:base exe https bae ror password http -o 镜像
A http://www.pianshen.com/article/249363068/
nexus3安装与配置
B https://www.cnblogs.com/hujunzheng/p/9807646.html
下载与安装
Maven配置
<localRepository>E:/ApacheMavenRepository</localRepository>
<server>
<id>nexus-releases</id>
<username>admin</username>
<password>admin1234</password>
</server>
<server>
<id>nexus-snapshots</id>
<username>admin</username>
<password>admin1234</password>
</server>
<mirror>
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<name>all maven</name>
<url>http://localhost:8888/repository/maven-public/</url>
</mirror>
<profile>
<id>nexus</id>
<repositories>
<repository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
<activeProfiles>
<activeProfile>nexus</activeProfile>
</activeProfiles>
通过Eclipse上传jar到Nexus私服
<distributionManagement>
<repository>
<id>nexus-snapshots</id>
<name>nexus snapshots repository</name>
<url>http://localhost:8888/repository/maven-snapshots/</url>
</repository>
</distributionManagement>
通过Nexus界面上传oracle jdbc驱动到私服中
通过命令上传oralce jdbc驱动
mvn deploy:deploy-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.4 -Dpackaging=jar -Dfile=D:\迅雷下载\ojdbc6.jar -Durl=http://localhost:8888/repository/maven-releases/ -DrepositoryId=maven-releases
创建定时任务清理无用的Snapshot的jar
标签:base exe https bae ror password http -o 镜像
原文地址:https://www.cnblogs.com/kelelipeng/p/11738547.html