您的位置:首页 > 其它

Maven相关的一些资源

2012-11-30 09:20 363 查看

1、把本地的jar包安装到本地maven仓库中:

语法:mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>

示例:mvn install:install-file -Dfile=F:\soft\jms-1.1.jar -DgroupId=javax.jms -DartifactId=jms -Dversion=1.1 -Dpackaging=jar

2、常用的maven仓库地址(maven repository)

共有的仓库

http://repo1.maven.org/maven2

http://repository.jboss.com/maven2

http://repository.sonatype.org/content/groups/public

http://mirrors.ibiblio.org/pub/mirrors/maven2/org/acegisecurity

私有的仓库

http://repository.codehaus.org

http://snapshots.repository.codehaus.org

http://people.apache.org/repo/m2-snapshot-repository

http://people.apache.org/repo/m2-incubating-repository

3、MAVEN仓库资源搜索的几个网站:

http://mvnrepository.com/

http://search.maven.org

https://repository.sonatype.org/index.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: