生而为人

程序员的自我修养

0%

maven命令

[toc]

常用命令

查看依赖jar包

1
2
3
4
5
6
# maven版本 >= 3.0 -Dverbose参数可能失效
mvn dependency:tree -Dverbose

mvn dependency:tree -Dverbose -Dincludes=org.apache.logging.log4j:log4j-api

# 建议直接使用 -Dscope=test 查看完整树

打包

1
mvn clean -U package -pl analysis-tool -am -P dev -Dmaven.source.skip=true -Dmaven.test.skip=true

要注意的是-P 对大小写敏感

重新生成iml文件

1
mvn idea:module

参数

1
2
-e 详细错误描述
-X

问题汇总

the output path is not specified for module ‘xxx’

Specify the output path in the Project Structure dalog