mvn install:install-file //固定格式,maven的语法
-Dfile=alibaba-sdk-1.0.0.jar //这里填写包的路径,因为我们是在当前目录所以只需要输入包名即可
-DgroupId=com.qiehua.csdn //这里填写包的groupId,之后作为pom.xml中引用的groupId使用
-DartifactId=sdk-api //这里填写artifactId,之后作为pom.xml中引用的artifactId使用
-Dversion=1.0.1 //这里填写包的version,之后作为pom.xml中引用的version使用
-Dpackaging=jar //固定格式,意思为传的jar包
-DgeneratePom=false //是否pom中生成
?mvn install:install-file ?"-Dfile=core-3.5.0.jar" ? "-DgroupId=com.thunisoft.zxing" ? "-DartifactId=javase" ?"-Dversion=3.5.0" ? ?"-Dpackaging=jar" ? "-DgeneratePom=false"
?