有没有办法告诉maven测试包的隔离?

时间:2016-10-19 15:39:14

标签: java maven osgi

在我正在构建的其中一个项目中,他们正在使用我的域对象jar,但只通过OSGi导入一个包。

有没有办法可以告诉maven检查并确保此软件包中的所有类都没有引用任何其他软件包并且如果是这样的话会使构建失败?

1 个答案:

答案 0 :(得分:0)

You'd be probably looking either for:

  • a unit-testing solution like JUnit4OSGI
  • or even one for integration testing, like Pax-Exam

I've made good experiences with the latter one.