有没有一种简单的方法可以在 Ant junit 或 java 任务的类路径中使用 OSGi 包?
我有一堆 OSGi 包,它们基本上是包含其他 jar 和清单的 jar。
bundle xyz.jar:
somejar1.jar
somejar2.jar
Manifest
我想运行一些 junit 测试,并且需要这些包中的一些类。 Ant 中是否有一种简单的方法可以表示
我可以将它们解压到临时目录,但是那样看起来很乏味,而且我不会利用 OSGi 包内的类路径。
I have a bunch of OSGi bundles that are basically jars that contain other jars and a manifest.
bundle xyz.jar:
somejar1.jar
somejar2.jar
Manifest
I want to run some junit tests, and need some classes inside these bundles. Is there an easy way in Ant to say
<path name="myclasspath" location="[stuff inside OSGI bundle xyz.jar]>
?
I could unjar these to a temp directory, but that seems tedious, plus I would not be leveraging the classpath inside the OSGi bundle.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 ant 运行 PDE 构建/OSGi 应用程序,那么这应该不是问题,OSGi 将处理类路径。
It should not a problem if you're using ant to run PDE build/OSGi application, OSGi would handle with the classpath.