Ant BND任务不会生成包含任何项目的包

时间:2011-08-11 19:30:47

标签: ant osgi

将maven项目转换为ant项目后,我无法生成捆绑包。 bnd ant任务创建test.jar但文件只包含META-INF。 eclipse项目名为testproj。我错过了什么?另外,有没有人知道有更多bnd ant任务示例的地方? bnd站点本身在这方面有点缺乏,尤其是如何构建类路径值。

<project name="testproj" basedir="." default="build">

<patternset id="project.deploy.jars">
    <include name="slf4j-api-1.6.1.jar" />
    <include name="logback-core-0.9.28.jar" />
    <include name="logback-classic-0.9.28.jar" />
    <include name="org.osgi.compendium-4.2.0.jar" />
    <include name="org.apache.felix.http.jetty-2.2.0.jar" />
    <include name="jcl-over-slf4j-1.6.1.jar" />
    <include name="mail-1.4.4-1.0.0.jar" />
    <include name="commons-io-2.0.1.jar" />
    <include name="commons-lang-2.6.jar" />
    <include name="commons-codec-1.5.jar" />
    <include name="commons-httpclient-3.1-osgi-1.0.0.jar" />
    <include name="bndlib-1.43.0.jar" />
    <include name="ojdbc5-osgi-1.0.0.jar" />
    <include name="joda-time-1.6.2.jar" />
    <include name="cxf-dosgi-ri-singlebundle-distribution-1.2.jar" />
</patternset>

<path id="bnd.classpath">
    <fileset dir="setup/external">
        <patternset refid="project.deploy.jars" />
    </fileset>
</path>

<target name="build" description="Build the bundle">

    <taskdef resource="aQute/bnd/ant/taskdef.properties"
        classpath="setup/dev/biz.aQute.bnd.jar"
        />

    <pathconvert property="bnd.classpath.string" pathsep=",">
        <path refid="bnd.classpath" />
        <mapper>
            <chainedmapper>
              <flattenmapper/>
              <regexpmapper from="(.*)" to="setup/external/\1" casesensitive="no"/>
            </chainedmapper>
        </mapper>
    </pathconvert>

    <echo>${bnd.classpath.string}</echo>

    <bnd 
      classpath="target/classes,${bnd.classpath.string}"
      eclipse="true" 
      failok="false" 
      exceptions="true" 
      output="test.jar"
      files="test.bnd"/>

</target>

</project>

test.bnd:
Import-Package:com.test.service, oracle.sql, oracle.jdbc, oracle.jdbc.driver, *
Export-Package:com.test.service
Service-Component:com.test.*

2 个答案:

答案 0 :(得分:1)

1)你看过bndtools中包含的蚂蚁支持吗?尼尔和我竭尽全力让bndtools在离线模式下运行。 2)build.xml看起来不是正确的ant语法?你能做一个小例子并发布适当的文件吗? 3)bnd永远不应该生成没有MANIFEST.MF文件的jar。运行是否有错误?

如果您无法解决问题,请随时向我发送带有设置的zip文件,我会检查发生了什么(并在此处报告)。

答案 1 :(得分:0)

在Google Groups bndtools(这是一个bndtools和bnd组)的小组的帮助下,问题显然是.bnd文件不包含Private-Package标头。这用于指定实现包,因此使其成为您想要引入的所有类的基本包。

添加之后,所有类都显示出来,组件xml再次出现。

感谢大家的帮助!