查找 maven 用于运行 testng 测试用例的类路径

发布于 2024-12-12 03:13:41 字数 58 浏览 0 评论 0原文

我可以使用 maven 的哪些选项来确定 maven 正在使用哪个类路径运行 testng 测试用例?

what options to maven can I use to determine what classpath maven is running a testng test case with?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

残疾 2024-12-19 03:13:41

您没有提供 Maven 版本,但至少在 3.x(也可能是 2.x)中您可以使用 -X(调试)选项运行命令。这样,测试类路径就会在测试运行之前打印出来。

mvn test -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.

mvn test -X
酒与心事 2024-12-19 03:13:41

一般来说,您可以通过使用内置的 找到 maven 正在使用的类路径maven 依赖插件 及其 build-classpath 目标

如果您希望使用类路径来编译和运行测试,则需要选择 test 依赖范围。此范围是默认值,但如果您想明确显示,可以使用 -DincludeScope=test 进行设置。

其他范围包括运行时编译提供系统

根据您想要如何使用输出,您可以使用选项 -Dmdep.outputFilterFile-Dmdep.outputFilemdep.outputFilterFile 使解析脚本的输出变得更加容易,并且 outputFile 选项写入文件,而不是某些工具可以直接读取的文件。

以下是一些示例:

$ mvn dependency:build-classpath -DincludeScope=test -Dmdep.outputFilterFile=true|grep 'classpath='
classpath=xxx.jar:yyy.jar
$ mvn dependency:build-classpath -DincludeScope=test -Dmdep.outputFile=cp.txt
$ cat cp.txt
xxx.jar:yyy.jar

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 and system.

Depending on how you want to consume the output you can play with the options -Dmdep.outputFilterFile and -Dmdep.outputFile. The mdep.outputFilterFile makes it easier to parse the output from a script and the outputFile option writes to a file instead which some tools can read directly.

Here are some examples:

$ mvn dependency:build-classpath -DincludeScope=test -Dmdep.outputFilterFile=true|grep 'classpath='
classpath=xxx.jar:yyy.jar
$ mvn dependency:build-classpath -DincludeScope=test -Dmdep.outputFile=cp.txt
$ cat cp.txt
xxx.jar:yyy.jar
定格我的天空 2024-12-19 03:13:41

我无法在评论中格式化我的回复,因此在此处提交 grep 版本:

mvn test -X | grep "maven.dependency.classpath"

I couldn't format my response in my comment so submitting the grepped version here:

mvn test -X | grep "maven.dependency.classpath"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文