查找 maven 用于运行 testng 测试用例的类路径
我可以使用 maven 的哪些选项来确定 maven 正在使用哪个类路径运行 testng 测试用例?
what options to maven can I use to determine what classpath maven is running a testng test case with?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您没有提供 Maven 版本,但至少在 3.x(也可能是 2.x)中您可以使用 -X(调试)选项运行命令。这样,测试类路径就会在测试运行之前打印出来。
You didn't provide the Maven version, but at least in 3.x (and maybe also 2.x) you can run commands with the -X (debug) option. That way the Test Classpath is printed out before tests are run.
一般来说,您可以通过使用内置的 找到 maven 正在使用的类路径maven 依赖插件 及其 build-classpath 目标。
如果您希望使用类路径来编译和运行测试,则需要选择
test
依赖范围。此范围是默认值,但如果您想明确显示,可以使用-DincludeScope=test
进行设置。其他范围包括
运行时
、编译
、提供
和系统
。根据您想要如何使用输出,您可以使用选项
-Dmdep.outputFilterFile
和-Dmdep.outputFile
。mdep.outputFilterFile
使解析脚本的输出变得更加容易,并且outputFile
选项写入文件,而不是某些工具可以直接读取的文件。以下是一些示例:
In general you can find the classpath that maven is using by using the built-in maven dependency plugin and its build-classpath goal.
If you want the classpath uses for compiling and running the test you need to select the
test
dependency scope. This scope is the default, but if you want to be explicit you can set it with-DincludeScope=test
.Other scopes include
runtime
,compile
,provided
andsystem
.Depending on how you want to consume the output you can play with the options
-Dmdep.outputFilterFile
and-Dmdep.outputFile
. Themdep.outputFilterFile
makes it easier to parse the output from a script and theoutputFile
option writes to a file instead which some tools can read directly.Here are some examples:
我无法在评论中格式化我的回复,因此在此处提交 grep 版本:
I couldn't format my response in my comment so submitting the grepped version here: