maven中比较常用的常用命令整理集合

1.mvn compile

编译类文件(编译项目)

2.mvn package

打包项目(打成jar或war包)

3.mvn install

包含mvn compile,mvn package,然后上传到本地仓库

4.mvn clean

清理(删除target目录下编译内容)

5.mvn package -Dmaven.test.skip=ture

打包项目,并且跳过测试
也可以和clean一起用:mvn clean package -Dmaven.test.skip=true

6.mvn deploy

包含mvn install,然后,上传到私服

7.mvn war:exploded

仅打包Web页面文件

8.mvn install:install-file -DgroupId=groupId -DartifactId=artifactId -Dversion=1.0.0 -Dpackaging=jar -Dfile=myfile.jar

将指定文件安装到本地仓库中
例如:
mvn  install:install-file  -DgroupId=groupId中的内容  -DartifactId=artifactId中的内容   -Dversion=版本号-Dpackaging=jar   -Dfile=想要打包的文件所在的位置(路径).jar

你可能感兴趣的:(maven)