4

作为能够快速过渡到 OSGi 的临时措施,我需要创建一个包含所有库的单个 jar。我所做的是将所有 jar 库放在 src/main/resources 中,以便它们最终位于创建的 jar 的根目录中。我遇到的问题是告诉 maven-bundle-plugin 导出 jar 中的所有包。所以基本上,我想将我所有的库暴露给其他 OSGi 包

这是我在 POM 中尝试的第一件事

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <extensions>true</extensions>
            <configuration>
                <instructions>
                    <Export-Package>*</Export-Package>
                    <Bundle-Name>${project.artifactId}</Bundle-Name>
                    <Bundle-Version>${project.version}</Bundle-Version>
                </instructions>
            </configuration>
        </plugin>
    </plugins>
</build>`

我试图导出所有的东西。但似乎唯一像这样导出的是两个 osgi 依赖项,而不是资源中的 jars

我有一百多个库,所以我试图找到一种自动填充<Export-Package>指令的方法,而不是手动添加每个库的包。不知何故,eclipse在插件开发环境中做到了,但我需要使用maven来做到这一点。捆绑插件可以做到这一点吗?如果罐子被添加到<Bundle-ClassPath>

4

3 回答 3

6

您必须将 jars 作为依赖项添加到 pom.xml 中,然后在<build>标记中为 maven-bundle-plugin 使用以下公式:

<plugin>
    <groupId>org.apache.felix</groupId>
    <artifactId>maven-bundle-plugin</artifactId>
    <extensions>true</extensions>
    <configuration>
        <manifestLocation>META-INF</manifestLocation>
        <instructions>
            <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
            <Bundle-Version>${project.version}</Bundle-Version>
            <Export-Package>*</Export-Package>
            <Bundle-Activator>your.activator.package.Activator</Bundle-Activator>
            <Embed-Dependency>*;scope=compile|runtime</Embed-Dependency>
            <Embed-Directory>target/dependency</Embed-Directory>
            <Embed-StripGroup>true</Embed-StripGroup>
            <Embed-Transitive>true</Embed-Transitive>
        </instructions>
    </configuration>
</plugin>

<plugin>
    <artifactId>maven-dependency-plugin</artifactId>
    <executions>
        <execution>
            <id>copy-dependencies</id>
            <phase>package</phase>
            <goals>
                <goal>copy-dependencies</goal>
            </goals>
        </execution>
    </executions>
</plugin>

还要添加以下内容以使一切都与 m2e 一起工作:

请参阅:m2e 不支持 maven-dependency-plugin(目标“copy-dependencies”、“unpack”)

<pluginManagement>
    <plugins>
        <!-- Ignore/Execute plugin execution -->
    <plugin>
            <groupId>org.eclipse.m2e</groupId>
            <artifactId>lifecycle-mapping</artifactId>
            <version>1.0.0</version>
            <configuration>
                <lifecycleMappingMetadata>
                    <pluginExecutions>
                        <!-- copy-dependency plugin -->
                        <pluginExecution>
                <pluginExecutionFilter>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-dependency-plugin</artifactId>
                                <versionRange>[1.0.0,)</versionRange>
                                <goals>
                                    <goal>copy-dependencies</goal>
                                </goals>
                            </pluginExecutionFilter>
                            <action>
                                <ignore />
                            </action>
                        </pluginExecution>
                    </pluginExecutions>
                </lifecycleMappingMetadata>
            </configuration>
        </plugin>
    </plugins>
</pluginManagement>

还要添加以下内容以使其与 Eclipse PDE 一起使用(取自Apache Felix 网站):

<profiles>
    <profile>
        <activation>
            <property>
                <name>m2e.version</name>
            </property>
        </activation>
        <properties>
            <osgi-version-qualifier>qualifier</osgi-version-qualifier>
        </properties>
        <build>
            <pluginManagement>
                <plugins>
                    <plugin>
                        <groupId>org.apache.felix</groupId>
                        <artifactId>maven-bundle-plugin</artifactId>
                        <configuration>
                            <!-- PDE does not honour custom manifest location -->
                            <manifestLocation>META-INF</manifestLocation>
                        </configuration>
                    </plugin>
                </plugins>
            </pluginManagement>
        </build>
    </profile>
</profiles>
于 2013-11-22T19:05:06.127 回答
4

根据 bundle 插件的文档,您可以使用{local-packages},这将扩展到项目中的所有包。

然而,这是一个非常糟糕的主意!想一想,你是说你的包中的所有东西都应该是公开可见的 API。这意味着你必须维护所有这些包,确保你仔细地改进它们并使用正确的版本等。基本上你不是模块化的。

任何 OSGi 包的理想状态应该是导出尽可能少的包

于 2012-07-17T22:16:03.707 回答
1

我认为这是不可能的。jar 需要单独位于 maven 存储库中,才能通过将它们作为依赖项添加到库项目中来创建“库项目”;否则罐子不会在类路径中。这样做的一个很好的参考是这个页面

于 2012-11-05T18:13:31.550 回答