首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

应用Maven构建JBI组件

2012-11-12 
使用Maven构建JBI组件1. 配置POM文件plugingroupIdorg.apache.servicemix.tooling/groupIdartifact

使用Maven构建JBI组件

1. 配置POM文件

<plugin>                <groupId>org.apache.servicemix.tooling</groupId>                <artifactId>jbi-maven-plugin</artifactId>                <version>4.3.1-fuse-00-00</version>                <extensions>true</extensions>                <configuration>                    <generatedDescriptorLocation>${project.build.directory}/jbi</generatedDescriptorLocation>                    <type>binding-component</type>                    <component>org.apache.servicemix.samples.embedded.MyComponent</component>                </configuration>            </plugin> 

5. 打包安装

??? 执行mvn install

热点排行