mvn
程序员文章站
2022-07-15 12:46:15
...
http://maven.apache.org/plugins/
[b]输出依赖树[/b]
下载源代码jar
下载javadoc包
跳过findbugs
[b]单元测试[/b]
跳过单元测试
跑单个单元测试(可加通配符)[url=http://maven.apache.org/plugins/maven-surefire-plugin/examples/single-test.html]详见[/url]
或细到方法单元测试
-----------------------------------------
同时也release到antx
指定配置文件
或
跳过检查intl-base
内存溢出
[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"
上一篇: windows下idea无法识别mvn命令解决方案
下一篇: leetcode(easy)_1