标签:
mvn install:install-file
-DgroupId=mytest
-DartifactId=test
-Dversion=1.1
-Dpackaging=jar
-Dfile=d:\test-1.1.jar
相当与在pom.xml中添加了
<dependency>
<groupId>mytest</groupId>
<artifactId>test</artifactId>
<version>1.1</version>
</dependency>
标签:
原文地址:http://www.cnblogs.com/gmq-sh/p/5449203.html