1. 程式人生 > >maven 發布到 本地倉庫

maven 發布到 本地倉庫

mod color use pan update pos lease 本地倉庫 版本

<!-- 發布命令 -->
    <distributionManagement>
        <repository>
            <id>nexus_release</id>
            <name>Nexus ReleaseRepository</name>
            <url>http://localhost:8081/nexus/content/repositories/releases/</url>
        </repository>
<snapshotRepository> <id>nexus_snapshot</id> <name>Nexus SnapshotRepository</name> <url>http://localhost:8081/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement>

setting.xml 中

       <server>
        <id>nexus_release</id>
        <username>admin</username>
        <password>admin123</password>
      </server>

      <server>
        <id>nexus_snapshot</id>
        <username>admin</username>
        <
password>admin123</password> </server>

發布命令

clean deploy

更新子模塊版本命令:

mvn versions:update-child-modules

maven 發布到 本地倉庫