Apache OSGI Karaf 的 features-maven-plugin:create-kar 在使用 PAX wrap/bnd 语法的 features.xml bundle 上失败



有问题的行是这个特性片段

中的第一个bundle
<feature name="stuff-common-security">
    <bundle>wrap:mvn:org.springframework/ldap/1.3.0.RELEASE,mvn:com.mycompany.stuff/stuff-common-security/1.0-SNAPSHOT/bnd/spring-ldap</bundle>
    <bundle>mvn:org.springframework.security/spring-security-core/3.1.0.RELEASE</bundle>
    <bundle>mvn:org.springframework.security/spring-security-ldap/3.1.0.RELEASE</bundle>
    <bundle>mvn:com.mycompany.stuff/stuff-common-security/1.0-SNAPSHOT</bundle>
</feature>

create-kar目标失败,出现以下错误:

[ERROR] Failed to execute goal org.apache.karaf.tooling:features-maven-plugin:2.2.9:create-kar (create-kar) on project stuff-demo:
 Failed to create kar archive: 
 Could not find artifact org.springframework:ldap:stuff-common-security:1.0-SNAPSHOT:1.3.0.RELEASE,mvn:com.mycompany.stuff 
in maven.mycompany.com (http://maven.mycompany.com/artifactory/libs-release-local)
[ERROR]
[ERROR] Try downloading the file manually from the project website.
[ERROR]
[ERROR] Then, install it using the command:
[ERROR] mvn install:install-file -DgroupId=org.springframework -DartifactId=ldap 
       -Dversion=1.3.0.RELEASE,mvn:com.mycompany.stuff -Dclassifier=1.0-SNAPSHOT 
       -Dpackaging=stuff-common-security -Dfile=/path/to/file

似乎错误地解析了bundle元素文本,并将包装器视为版本号的一部分。

<bundle>wrap:mvn:org.springframework/ldap/1.3.0.RELEASE,mvn:com.mycompany.stuff/stuff-common-security/1.0-SNAPSHOT/bnd/spring-ldap</bundle>

Karaf本身对这个bundle语法很满意,所以我不认为我在这里犯了错误。

是否有另一种方式来表达它,这样我就不会从create-kar中得到这个错误?

尝试用''转义逗号或使用CDATA部分(我在邮件列表中注意到一些转义问题):

<bundle><![CDATA[
wrap:mvn:org.springframework/ldap/1.3.0.RELEASE,mvn:com.mycompany.stuff/stuff-common-security/1.0-SNAPSHOT/bnd/spring-ldap
]]></bundle>

如果这不起作用-我怀疑插件没有使用实际的URL处理程序,只是剥离了wrap协议,所以我建议提交一个bug

当你使用分类器时,你可能只想在stuff-common-security的pom中嵌入,但这可能会使你的构建有点太毛了=]

如果是,创建一个maven模块,只有这两个模块作为依赖,然后使用BND/maven-bundle-plugin的嵌入依赖来合并它们。

相关内容

  • 没有找到相关文章

最新更新