nexus 3.3.1-Windows本地搭建-及配置

win10,IDE-idea2016
1,首先你需要下载一个

Nuxus官方下载地址

Paste_Image.png

点击下载就好

2,到安装目录下面
E:\nexus-3.3.1-01\bin 输入
nexus.exe /run

3,等待安装就好了

E:\sonatype-work\nexus3\etc 这个路径下面 这个nexus.properties可以修改端口
修改下仓库位置<localRepository>F:/nexus/repository</localRepository>
首先 修改maven的配置:
<server> <id>snapshots</id> <username>admin</username> <password>admin123</password> </server> <server> <id>releases</id> <username>admin</username> <password>admin123</password> </server>
注意这里的id后面要和pom里面的id对应
配置本地的镜像
<mirror> <id>nexus</id> <mirrorOf>*</mirrorOf> <url>http://localhost:8081/repository/maven-public/</url> </mirror>
和profiles
<profile> <id>nexus</id> <repositories> <repository> <id>central</id> <url>http://localhost:8081/repository/maven-public/</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>
最后在profiles后面配置一个启动器
<activeProfiles> <activeProfile>nexus</activeProfile> </activeProfiles>
maven的setting配置完成

接下来就是你自己的pom配置

<distributionManagement>
    <repository>
        <id>releases</id>
        <name>Releases</name>
        <url>http://localhost:8081/repository/maven-releases</url>
    </repository>
    <snapshotRepository>
        <id>snapshots</id>
        <name>Snapshot</name>
        <url>http://localhost:8081/repository/maven-snapshots</url>
    </snapshotRepository>`

在pom文件开头 记得后面加上<packaging>jar</packaging>

接下来就可以上传和下载了-以后每次下载公网的jar,先到私服上,再到本地

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 135,026评论 19 139
  • 搭建 nexus 私服(centos6.7) 备注:Centos 6.7 、 nexus-2.12.1-01-bu...
    逐暗者阅读 2,535评论 3 9
  • 首先私服是一种衍生出来的特殊的Maven远程仓库,构建私服的好处请看3.5私服 可以帮助大家建立私服的仓库管理软件...
    zlcook阅读 10,673评论 0 32
  • 最近大热的colourpop日落盘没有入手,感觉很多可以替代的色,就拿手头的两个便宜的不能再便宜的眼影画出了如下图...
    哈利路牙阅读 170评论 0 0
  • 作者:枫凌 君不见,妾已情痴思无眠 君不见,妾已因夜冷而念 君不见,妾已连渡阴雨天 君不见,妾已因念怀而泣 君不见...
    惜君2017阅读 427评论 0 0