作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Maven 插件,需要 File[]
作为其配置参数之一(文档: maven-failsafeplugin )。如何在 pom.xml 中配置此类参数?理想情况下,我想说“包含目录 X 中的所有文件”或“my-test-output/*.xml”。
最佳答案
<executions>
<execution>
<configuration>
<summaryFile>path/to/file</summaryFile>
<summaryFile>path/to/file2</summaryFile>
<summaryFile>...</summaryFile>
</configuration>
<execution/>
<execution>
....
<execution/>
</executions>
看看usage page了解更多信息和示例
关于java - 如何在 Maven 插件上配置 File[]?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20538203/
我是一名优秀的程序员,十分优秀!