3

要列出您希望包含在生成的 features.xml 中的一堆包,文档说:

bundles File     A properties file that contains a list of bundles that will be used to generate the features.xml file

但它忽略了说明这个文件应该是什么格式。文档给出了例子:

        <execution>
          <id>generate</id>
          <phase>generate-resources</phase>
          <goals>
            <goal>generate-features-xml</goal>
          </goals>
          <configuration>
            <bundles>src/main/resources/bundles.properties</bundles>
            <outputFile>target/features.xml</outputFile>
          </configuration>
        </execution>

有人知道这个文件应该是什么样子吗?

4

1 回答 1

3

正确的格式是

groupId/artifactId/version/type

例子:

org.apache/bundle1/1.0/bundle

对于它的价值,我试图让功能插件为我工作,但它没有,部分原因是文档不佳。我想动态构建一个 features.xml 来替换我的包的版本和我的功能中的包。使用 Maven 过滤来实现我的目标更容易,所以我就是这样做的。

于 2014-01-17T20:13:10.503 回答