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

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>


maven 手动增添jar包到本地仓库和nexus
这个地方把groupId意见改为了com.jzt
然后在POM里面这样写就可以了
    <dependency>
	<groupId>com.jzt</groupId>
	<artifactId>Wmgwsoap</artifactId>
	<version>1.0</version>
</dependency>