为什么 jaxws-maven-plugin 会显示这些警告?
Why is jaxws-maven-plugin showing these warnings?
一切正常,但我对这些警告是怎么回事感到困惑。
当我 运行 达到 wsimport
目标时,对于我项目的每个测试依赖项,它都会报告它 "cannot find file"。
[INFO] --- jaxws-maven-plugin:2.3:wsimport (default-cli) @ my-project ---
[WARNING] cannot find file for com.realvnc.services:test-utils
[WARNING] cannot find file for org.cassandraunit:cassandra-unit
[WARNING] cannot find file for org.springframework.ws:spring-ws-test
[WARNING] cannot find file for com.jayway.jsonpath:json-path
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
问题:
这个文件到底是什么,在找什么?
这是我还没有注意到的某些问题的征兆吗?
有没有办法删除这些警告?
您似乎遇到了已报告的问题 bug:
WsImportMojo: warning "cannot find file for" for test artefacts
这个问题仍然悬而未决(在撰写本文时),修复可能会在版本 2.5.2-SNAPSHOT
中可用(尚未发布,因此在 Maven Central 上不可用)。
因此,关于您的问题:
What exactly is this file and what is looking for it?
警告在 this line 中发出,同时扫描工件(依赖项)但不按范围过滤(test
和 provided
确实应该被忽略)或可选依赖项。
Is this symptomatic of some problem I haven't noticed yet?
没有,你可以忽略它。它会在未来的版本中消失。
Is there a way to remove these warnings?
暂时没有。同样,它们将在未来的版本中消失。
一切正常,但我对这些警告是怎么回事感到困惑。
当我 运行 达到 wsimport
目标时,对于我项目的每个测试依赖项,它都会报告它 "cannot find file"。
[INFO] --- jaxws-maven-plugin:2.3:wsimport (default-cli) @ my-project ---
[WARNING] cannot find file for com.realvnc.services:test-utils
[WARNING] cannot find file for org.cassandraunit:cassandra-unit
[WARNING] cannot find file for org.springframework.ws:spring-ws-test
[WARNING] cannot find file for com.jayway.jsonpath:json-path
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
问题:
这个文件到底是什么,在找什么?
这是我还没有注意到的某些问题的征兆吗?
有没有办法删除这些警告?
您似乎遇到了已报告的问题 bug:
WsImportMojo: warning "cannot find file for" for test artefacts
这个问题仍然悬而未决(在撰写本文时),修复可能会在版本 2.5.2-SNAPSHOT
中可用(尚未发布,因此在 Maven Central 上不可用)。
因此,关于您的问题:
What exactly is this file and what is looking for it?
警告在 this line 中发出,同时扫描工件(依赖项)但不按范围过滤(test
和 provided
确实应该被忽略)或可选依赖项。
Is this symptomatic of some problem I haven't noticed yet?
没有,你可以忽略它。它会在未来的版本中消失。
Is there a way to remove these warnings?
暂时没有。同样,它们将在未来的版本中消失。