maven下载jar通过nexus3.2,并且下载到私有仓库

在setting中加
<profile>
        <!--profile 的 id-->
        <id>dev</id>
        <repositories>
            <repository>
                <!--仓库 id,repositories 可以配置多个仓库,保证 id 不重复-->
                <id>nexus</id>
                <!--仓库地址,即 nexus 仓库组的地址-->
                <url>http://127.0.0.1:8081/repository/maven-public/</url>
                <!--是否下载 releases 构件-->
                <releases>
                    <enabled>true</enabled>
                </releases>
                <!--是否下载 snapshots 构件-->
                <snapshots>
                    <enabled>true</enabled>
                </snapshots>
            </repository>
        </repositories>
        <pluginRepositories>
            <!-- 插件仓库,maven 的运行依赖插件,也需要从私服下载插件 -->
            <pluginRepository>
                <!-- 插件仓库的 id 不允许重复,如果重复后边配置会覆盖前边 -->
                <id>public</id>
                <name>Public Repositories</name>
                <url>http://127.0.0.1:8081/repository/maven-public/</url>
            </pluginRepository>
        </pluginRepositories>
</profile>


 <activeProfiles>
 	<activeProfile>dev</activeProfile>
 </activeProfiles>
注意:http://127.0.0.1:8081/repository/maven-public/  仓库的public地址,是关键。

上一篇:kettle 9.1,ELT Connect按钮消失


下一篇:通过GitHub Desktop 上传代码到github 远程仓库