zoukankan      html  css  js  c++  java
  • Maven中央(或国内)仓库地址

    maven官方 http://repo1.maven.org/maven2/  或 http://repo2.maven.org/maven2/ (延迟低一些)

    osc 本家 http://maven.oschina.net/content/groups/public/

    jboss http://repository.jboss.org/nexus/content/groups/public/

    配置见:http://maven.oschina.net/help.html

    pom.xml 的配置方案:

    <repositories>
               <repository>
                            <id>nexus</id>
                            <name>local private nexus</name>
                            <url>http://maven.oschina.net/content/groups/public/</url>
                            <releases>
                                <enabled>true</enabled>
                            </releases>
                            <snapshots>
                                <enabled>false</enabled>
                            </snapshots>
                        </repository>
                    </repositories>
                    <pluginRepositories>
                        <pluginRepository>
                            <id>nexus</id>
                            <name>local private nexus</name>
                            <url>http://maven.oschina.net/content/groups/public/</url>
                            <releases>
                                <enabled>true</enabled>
                            </releases>
                            <snapshots>
                                <enabled>false</enabled>
                            </snapshots>
                        </pluginRepository>
                    </pluginRepositories>
  • 相关阅读:
    04_特征工程
    03_特征清洗
    02_数据探索
    01_简介
    cache是什么文件?
    gulp详细入门教程
    HTML5实战与剖析之触摸事件(touchstart、touchmove和touchend)
    h4和h5的区别
    弹性盒布局
    js面向对象
  • 原文地址:https://www.cnblogs.com/henuyuxiang/p/6281537.html
Copyright © 2011-2022 走看看