首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

maven 手动增添jar包到本地仓库和nexus

2013-07-04 
maven 手动添加jar包到本地仓库和nexus首先,推荐几个好的 Maven 常用仓库网址:http://mvnrepository.com/h

maven 手动添加jar包到本地仓库和nexus
首先,
推荐几个好的 Maven 常用仓库网址:
http://mvnrepository.com/
http://search.maven.org/
http://repository.sonatype.org/content/groups/public/
http://people.apache.org/repo/m2-snapshot-repository/
http://people.apache.org/repo/m2-incubating-repository/



mvn install:install-file -Dfile=C:\FCKeditor-2.3.jar -DgroupId=com.fredck -DartifactId=FCKeditor -Dversion=2.3 -Dpackaging=jar

mvn install:install-file -Dfile=C:\sedmessage-1.0.jar -DgroupId=org.tempuri -DartifactId=WmgwSoap -Dversion=1.0 -Dpackaging=jar



然后在POM里面这样写就可以了

    <dependency><groupId>com.fredck</groupId><artifactId>FCKeditor</artifactId><version>2.3</version></dependency>



这个地方把groupId意见改为了com.jzt
然后在POM里面这样写就可以了
    <dependency><groupId>com.jzt</groupId><artifactId>Wmgwsoap</artifactId><version>1.0</version></dependency>



热点排行