Can';t使用maven依赖项运行OSGi捆绑包

Can';t使用maven依赖项运行OSGi捆绑包,maven,dependencies,osgi,bundle,Maven,Dependencies,Osgi,Bundle,我正在构建OSGi包(在NetBeans 8.2中),但是我需要外部的maven依赖项,但是一旦我将它们添加到pom中,我就不能再运行该包了 我的整个pom如下所示: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0

我正在构建OSGi包(在NetBeans 8.2中),但是我需要外部的maven依赖项,但是一旦我将它们添加到pom中,我就不能再运行该包了

我的整个pom如下所示:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>myProject</groupId>
<artifactId>myProject</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>bundle</packaging>

<name>myProject</name>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
    <dependency>
        <groupId>org.osgi</groupId>
        <artifactId>org.osgi.core</artifactId>
        <version>4.3.0</version>
        <scope>provided</scope>
    </dependency>

    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>8.0.15</version>
        <scope>compile</scope>
    </dependency>

    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-pool2</artifactId>
        <version>2.6.0</version>
        <scope>compile</scope>
    </dependency>

    <dependency>
        <groupId>commons-logging</groupId>
        <artifactId>commons-logging</artifactId>
        <version>1.2</version>
        <scope>compile</scope>
    </dependency>

    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-dbcp2</artifactId>
        <version>2.5.0</version>
        <scope>compile</scope>
    </dependency>
</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <version>2.3.7</version>
            <extensions>true</extensions>
            <configuration>
                <instructions>
                    <Bundle-Activator>myProject.Activator</Bundle-Activator>
                    <Import-Package>
                        org.osgi.*,
                        javax.*,
                        !org.apache.*,
                        <!-- org.apache.commons.pool2*;version=2.6.0,
                        org.apache.commons.dbcp2*;version=2.5.0,
                        org.apache.commons.logging*;version=1.2,-->
                        !com.mysql.*;version=8.0.15,
                        !com.google.protobuf.*;version=3.6.1
                    </Import-Package>
                    <Export-Package>
                        myProject.service
                    </Export-Package>
                    <Embed-Dependency>
                        commons-dbcp2;scope=compile,
                        commons-logging;scope=compile
                        commons-pool2;scope=compile
                        mysql-connector-java;scope=compile
                    </Embed-Dependency>
                    <Include-Resource>
                        {maven-resources},
                        {maven-dependencies}
                    </Include-Resource>
                </instructions>
            </configuration>
        </plugin>
    </plugins>
</build>

<profiles>
    <profile>
        <id>build-for-felix</id>
        <dependencies>
            <dependency>
                <groupId>org.apache.felix</groupId>
                <artifactId>org.apache.felix.main</artifactId>
                <version>4.0.3</version>
                <scope>provided</scope>
            </dependency>
            <dependency>
                <groupId>org.apache.felix</groupId>
                <artifactId>org.apache.felix.gogo.shell</artifactId>
                <version>0.10.0</version>
            </dependency>
        </dependencies>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-antrun-plugin</artifactId>
                    <version>1.7</version>
                    <executions>
                        <execution>
                            <id>compile</id>
                            <phase>package</phase>
                            <goals>
                                <goal>run</goal>
                            </goals>
                            <configuration>
                                <target>
                                    <pathconvert property="plugins.jars" pathsep="${path.separator}">
                                        <path refid="maven.runtime.classpath"/>
                                        <map from="${project.build.directory}${file.separator}classes" to=""/>
                                    </pathconvert>
                                    <pathconvert pathsep=" " property="bundles">
                                        <path path="${plugins.jars}"/>
                                        <mapper>
                                            <chainedmapper>
                                                <flattenmapper/>
                                                <globmapper from="*" to="file:modules/*" casesensitive="no"/>
                                            </chainedmapper>
                                        </mapper>
                                    </pathconvert>
                                    <propertyfile file="${project.build.directory}/config.properties">
                                        <entry key="felix.auto.start" value="${bundles} file:modules/${project.build.finalName}.jar"/>
                                        <entry key="org.osgi.framework.bootdelegation" value="*"/>
                                    </propertyfile>
                                    <copy file="${maven.dependency.org.apache.felix.org.apache.felix.main.jar.path}" tofile="${project.build.directory}/felix.jar"/>
                                </target>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-assembly-plugin</artifactId>
                    <version>2.3</version>
                    <executions>
                        <execution>
                            <id>create-executable-jar</id>
                            <phase>package</phase>
                            <goals>
                                <goal>single</goal>
                            </goals>
                            <configuration>
                                <descriptors>
                                    <descriptor>${basedir}/src/main/assembly/felix.xml</descriptor>
                                </descriptors>
                                <finalName>${project.build.finalName}</finalName>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
    <profile>
        <id>run-on-felix</id>
        <dependencies>
            <dependency>
                <groupId>org.apache.felix</groupId>
                <artifactId>org.apache.felix.main</artifactId>
                <version>4.0.3</version>
                <scope>provided</scope>
            </dependency>
            <!-- org.apache.felix:org.apache.felix.gogo.shell:0.6.1 useless from Maven since stdin is swallowed -->
        </dependencies>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-antrun-plugin</artifactId>
                    <version>1.7</version>
                    <configuration>
                        <target>
                            <property name="vm.args" value=""/>
                            <pathconvert property="plugins.jars" pathsep="${path.separator}">
                                <path refid="maven.runtime.classpath"/>
                                <map from="${project.build.directory}${file.separator}classes" to=""/>
                            </pathconvert>
                            <makeurl property="urls" separator=" ">
                                <path path="${plugins.jars}"/>
                                <path location="${project.build.directory}/${project.build.finalName}.jar"/>
                            </makeurl>
                            <propertyfile file="${project.build.directory}/run.properties">
                                <entry key="felix.auto.start" value="${urls}"/>
                                <entry key="felix.auto.deploy.action" value="uninstall,install,update,start"/>
                                <entry key="org.osgi.framework.storage" value="${project.build.directory}${file.separator}felix-cache"/>
                                <entry key="org.osgi.framework.bootdelegation" value="*"/>
                            </propertyfile>
                            <makeurl property="run.properties.url" file="${project.build.directory}/run.properties"/>
                            <java fork="true" jar="${maven.dependency.org.apache.felix.org.apache.felix.main.jar.path}">
                                <sysproperty key="felix.config.properties" value="${run.properties.url}"/>
                                <jvmarg line="${vm.args}"/>
                            </java>
                        </target>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>
编辑:添加了整个pom.xml文件,我尝试按照类似帖子中的建议在其中添加所有包,但没有帮助

也尝试加入我的pom,在这里看不到区别

最后,我尝试添加标签,但也没有帮助


大部分pom文件是由netbeans本身生成的(Maven OSGi Bundle-带有生成的activator类的默认模板)。

将此添加到pom中解决:

            <configuration>
                <instructions>
                    <Bundle-Activator>myProject.Activator</Bundle-Activator>
                    <Import-Package>
                       *;resolution:=optional
                    </Import-Package>
                </instructions>
            </configuration>

myProject.Activator
*;分辨率:=可选
显然,可能存在一些问题,即您没有直接将包导入捆绑包中的类。不太清楚为什么会这样,但来源如下:


您如何包装您的包裹?请分享您的整个pom.xml,特别是
依赖项
插件
部分。如果你还没有的话,我建议你使用maven bundle插件。我已经添加了完整的pom以及我已经尝试过的细节。嵌入所有依赖项通常不是一个好主意。例如,如果您希望在捆绑包之间共享mysql数据源。在OSGi中使用pax jdbc是一种干净的数据库访问方法。它为数据源提供服务。因此,您的bundle不必依赖mysql并配置数据源。
            <configuration>
                <instructions>
                    <Bundle-Activator>myProject.Activator</Bundle-Activator>
                    <Import-Package>
                       *;resolution:=optional
                    </Import-Package>
                </instructions>
            </configuration>