欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

mvn

程序员文章站 2022-07-15 12:46:15
...
http://maven.apache.org/plugins/

[b]输出依赖树[/b]
mvn dependency:tree > dep.txt


下载源代码jar
-DdownloadSources=true


下载javadoc包
-DdownloadJavadocs=true


跳过findbugs
-Dfindbugs.skip=true


[b]单元测试[/b]
跳过单元测试
-Dmaven.test.skip=true

跑单个单元测试(可加通配符)[url=http://maven.apache.org/plugins/maven-surefire-plugin/examples/single-test.html]详见[/url]
mvn -Dtest=TestSquare,TestCi*le test

或细到方法单元测试
mvn -Dtest=TestCircle#*test* test


-----------------------------------------
同时也release到antx
a2m:install-antx-module-intl


指定配置文件
-Dantx.properties.path=/path/your.properties


-DuserProp=/path/your.properties


跳过检查intl-base
-Dcheck.parent.skip


内存溢出
export MAVEN_OPTS="$MAVEN_OPTS -Xms256m -Xmx1024m"