Maven 手动安装Jar包的例子

若POM.XML中有如下JAR包不能自动下载:
<dependency>
            <groupId>castor</groupId>
            <artifactId>castor</artifactId>
            <version>1.0</version>
            <scope>compile</scope>
 </dependency> 

手动安装命令如下:

 mvn install:install-file -DgroupId=castor -DartifactId=castor
 -Dversion=1.0 -Dpackaging=jar -Dfile=c:\castor-1.0.jar 


你可能感兴趣的:(maven,安装,jar)