在很多Apache项目中都有一个名为DEPENDENCIES的文件,它是从POM和传递依赖项的所有POM生成的。但是,我找不到有关如何生成这些文件的任何信息。我怀疑有一个Maven插件...
这是一个例子: https://raw.githubusercontent.com/sonatype/maven-demo/master/DEPENDENCIES
如何生成这样的文件?
答案 0 :(得分:1)
我制作了一个example来说明这是如何运作的:
<build>
<plugins>
<plugin>
<artifactId>maven-remote-resources-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>process</goal>
</goals>
<configuration>
<resourceBundles>
<resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
</resourceBundles>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
棘手的插件是maven-remote-resouces-plugin,它可以处理trick here的速度模板。