我正在使用 maven-feature-plugin
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>features-maven-plugin</artifactId>
<version>2.3.6</version>
<executions>
<execution>
<id>generate</id>
<phase>generate-resources</phase>
<goals>
<goal>generate-features-xml</goal>
</goals>
<configuration>
<bundles>src/main/resources/bundle.properties</bundles>
<kernelVersion>2.3.6</kernelVersion>
<outputFile>target/features.xml</outputFile>
</configuration>
</execution>
</executions>
</plugin>
这工作得很好,但我生成的功能之一取决于该pax-cdi
功能是否有办法让插件为我添加它?例如,我在bundle.properties
文件中定义了一些无法自动解析的依赖项,我可以在这个文件中添加一个特性吗?