把jar包加到已有的maven工程里
mvn install:install-file -Dfile=<JAR_FILE> -DgroupId=jarfile.groupid -DartifactId=jarfile.artifactid -Dversion=jarfile.version -Dpackaging=jar
打包而不执行ut
mvn package -Dmaven.test.skip=true
查看依赖树
mvn dependency:tree
把jar包加到已有的maven工程里
mvn install:install-file -Dfile=<JAR_FILE> -DgroupId=jarfile.groupid -DartifactId=jarfile.artifactid -Dversion=jarfile.version -Dpackaging=jar
打包而不执行ut
mvn package -Dmaven.test.skip=true
查看依赖树
mvn dependency:tree
转载于:https://www.cnblogs.com/drizzlewithwind/p/5385824.html