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



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

我的目的是建立这个 nexus 存储库,以便未来的项目将从这个 nexus 存储库(此环境未连接到 Internet(中提取 depencies。

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

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

查看此详细信息

需要进行以下配置:

– 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存储库。 在这里您可以获得详细信息。

相关内容

  • 没有找到相关文章

最新更新