我尝试使用maven-bundle-plugin
使用osgi r6元类型注释构建一个包。
我创建了一个配置类
@ObjectClassDefinition(
name = "Bundle State Validator"
)
@interface BundleInstallationConfig {
boolean DEFAULT_ENABLED = true;
@AttributeDefinition(
defaultValue = "true"
)
boolean isEnabled() default DEFAULT_ENABLED;
}
我在我的组件类中使用它。
@Component(
immediate = true
)
@Designate(ocd = BundleInstallationConfig.class)
public class BundleInstallationVerifier {
}
但是当我构建它时,生成的元类型文件看起来并不正确,并且它不会在配置管理中加载。这就是生成的内容(它缺少指定部分)
<metatype:MetaData localization="OSGI-INF/l10n/test.test.BundleInstallationConfig">
<OCD id="test.test.BundleInstallationConfig" name="Bundle State Validator" description="Watches bundles to ensure they are in the correct state and switches the System Ready state.">
<AD id="isEnabled" type="Boolean" name="Is enabled" default="true"/>
</OCD>
</metatype:MetaData>
这是我的pom中的bundle插件
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.4</version>
<extensions>true</extensions>
<configuration>
<instructions>
<obrRepository>NONE</obrRepository>
<_metatypeannotations>*</_metatypeannotations>
<_dsannotations>*</_dsannotations>
</instructions>
</configuration>
</plugin>
我最远的目的是通过这个家伙的挫折 https://github.com/bndtools/bnd/issues/1030
https://groups.google.com/forum/#!msg/bndtools-users/_F0Nr8b7rlQ/2A9x660pAgAJ
答案 0 :(得分:3)
我不认为maven-bundle-plugin
使用了bndlib 3.0。 bndlib 3.0(尚未发布)是OSGi R6注释支持的来源。你有点领先。
答案 1 :(得分:-1)
您的designate
未出现,因为该课程尚未定义。{1}}。看看Neil Bartlett&#39;关于此主题的帖子:enter link description here