如何生成Maven dependencies.properties文件?

时间:2011-09-18 18:14:40

标签: maven dependencies

一些上下文:我正在使用Pax Exam编写集成测试,我需要在当前的Maven项目中收集尽可能多的信息。这是为了在加载依赖关系包和工作项目本身时减少样板代码。 例如,Pax Exam允许通过在

中提供groupId和artifactId来收集Maven依赖项的版本。

org.ops4j.pax.exam.MavenUtils.getArtifactVersion(字符串,字符串)

方法。为此,将查找 META-INF / maven / dependencies.properties 文件。文档说这样的文件是由Maven插件生成的,但我真的找不到。

有没有办法生成这样的dependencies.properties文件?

1 个答案:

答案 0 :(得分:6)

看起来这样depends-maven-plugin就可以了。