安装spring-boot-starter-parent并上传到nexus

时间:2019-11-21 09:35:53

标签: spring-boot

我想安装spring-boot-starter-parent jar并将其上传到我的私人nexus 3存储库中。然后,我希望配置我的项目pom文件以从那里检索依赖关系。如何下载spring-boot-starter-parent jar?

我的意图是建立此联系存储库,以便将来的项目从此联系存储库(此环境未连接到互联网)中提取依赖

1 个答案:

答案 0 :(得分:0)

无需在您的关系中上传。您可以配置代理存储库:

A repository that proxies everything you download from Maven Central. Next time you download the same dependency, it will be cached in your Nexus.

this for details

需要进行以下配置:

– create a private (hosted) repository for our snapshots
– create a private (hosted) repository for our releases
– create a proxy repository pointing to Maven Central
– create a group repository to provide all of these repos under a single URL

另一个过程:

如果要上传jar列表,​​则编写gradle任务以上传nexus存储库。 here您会获得详细信息。