作为能够快速过渡到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依赖项,而不是资源中的jar
我有超过一百个库,所以我试图找到一种自动填充<Export-Package>
指令的方法,而不是手动添加每个librarie的包。不知怎的,eclipse在插件开发环境中做到了,但我需要使用maven来做到这一点。是否可以使用bundle插件?如果将罐子添加到<Bundle-ClassPath>
答案 0 :(得分:5)
您必须将jar作为依赖项添加到pom.xml中,然后在&lt; build&gt; 标记中为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:
请参阅:maven-dependency-plugin (goals “copy-dependencies”, “unpack”) is not supported by m2e
<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 website):
<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>
答案 1 :(得分:4)
根据捆绑插件的documentation,您可以使用{local-packages}
,这将扩展到项目中的所有包。
然而这是一个非常糟糕的主意!想一想,你说你的包中的所有内容都应该是公开可见的API。这意味着您必须维护所有这些软件包,确保您仔细改进并使用正确的版本等。基本上您不是模块化的。
任何OSGi捆绑包的理想选择应该是尽可能少地导出。
答案 2 :(得分:1)
我认为这是不可能的。罐子需要单独在maven仓库中,以便能够通过在库项目中添加它们作为依赖项来创建“库项目”;否则罐子不会在类路径中。这样做的一个很好的参考是this page