nexus自学笔记

来源:互联网 发布:航天税务软件下载 编辑:程序博客网 时间:2024/06/05 00:16

用户根目录/.m2/ 下的maven默认配置文件
settings.xml

<settings>    <mirrors>        <mirror>            <!--This sends everything else to /public -->            <id>nexus</id>            <mirrorOf>*</mirrorOf>            <url>http://127.0.0.1:8081/repository/maven-public/</url>        </mirror>    </mirrors>    <profiles>        <profile>            <id>nexus</id>            <!--Enable snapshots for the built in central repo to direct -->            <!--all requests to nexus via the mirror -->            <repositories>                <repository>                    <id>central</id>                    <url>http://central</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>        <!--make the profile active all the time -->        <activeProfile>nexus</activeProfile>    </activeProfiles>    <servers>        <server>            <id>nexus</id>            <username>username</username>            <password>password</password>        </server>    </servers></settings>

pom.xml中的片段

<distributionManagement>        <repository>            <id>nexus</id>            <name>Releases</name>            <url>http://127.0.0.1:8081/repository/maven-releases</url>        </repository>        <snapshotRepository>            <id>nexus</id>            <name>Snapshot</name>            <url>http://127.0.0.1:8081/repository/maven-snapshots</url>        </snapshotRepository>    </distributionManagement>
原创粉丝点击