读书人

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

发布时间: 2013-07-04 11:45:55 作者: rapoo

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>



读书人网 >开源软件

热点推荐