an example of maven-bundle-plugin

来源:互联网 发布:郑州师范学院网络教育 编辑:程序博客网 时间:2024/05/18 02:44
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>1.4.3</version>
                <!-- | the following instructions build a simple set of public/private
                    classes into an OSGi bundle -->
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                        <Bundle-Version>${project.version}</Bundle-Version>
                        <Import-Package>*</Import-Package>
                        <!-- | assume public classes are in the top package, and private classes
                            are under ".internal" -->
                        <Export-Package>!${bundle.namespace}.internal.*,${bundle.namespace}.*;version="${project.version}"</Export-Package>
                        <Private-Package>${bundle.namespace}.internal.*,*</Private-Package>
                        <Embed-Dependency>*;scope=compile|runtime|system</Embed-Dependency>
                        <!-- | each module can override these defaults in their osgi.bnd file -->
                        <_include>-osgi.bnd</_include>
                    </instructions>
                </configuration>
                <extensions>true</extensions>

            </plugin>


osgi.bnd

#-----------------------------------------------------------------
# Use this file to add customized Bnd instructions for the bundle
#-----------------------------------------------------------------

Bundle-Activator: com.ma.ajb.wrapper.AJBActivator
Require-Bundle: org.apache.servicemix.bundles.xerces,org.apache.servicemix.bundles.xalan


org.osgi.framework.BundleActivator worked at lifecycle layer with start() and stop() method.



maven-bundle-plugin is based on bnd tool, detail information please reference http://felix.apache.org/site/apache-felix-maven-bundle-plugin-bnd.html

0 0
原创粉丝点击