如何在NetBeans上使用Maven运行多模块项目

时间:2015-11-28 00:55:44

标签: java maven netbeans

我在NetBeans IDE Maven多模块项目中有2个OSGi Bundle作为服务。到目前为止我知道的构建和部署OSGi包的唯一方法是解释HERE : Building and Deploying the OSGi Bundles

要运行任何捆绑包,我必须转到GlassFish OSGi管理控制台捆绑包并单击 START / STOP 选项卡以运行捆绑包以将必要的项目打印到控制台(As在本教程的“Building and Deploying the OSGi Bundles”部分中进行了解释。所有这一切只是为了将其运行到控制台上:

System.out.println("HelloActivator::start");
context.registerService(Hello.class.getName(), new HelloImpl(), null);
System.out.println("HelloActivator::registration of Hello service successful");

问题在于这似乎是一个非常漫长的过程。有没有其他方法可以获得类似的功能,比如我可以通过非多模块项目实现的功能,我只需单击NetBeans 运行选项卡,让项目打印我的{{1}控制台。

我想通过点击运行按钮以类似的方式运行所有模块。

1 个答案:

答案 0 :(得分:0)

不确定单击,但这应该有助于部署

How to run the project after building with maven 与-行家