現在、非 OSGI Maven プロジェクトをバンドルしようとしています。今、私は次のようなものを持っています、
<?xml version="1.0" encoding="UTF-8"?>
<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>
<!-- The Basics -->
<artifactId>Project1</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>internal.commons</groupId>
<artifactId>internalcommons</artifactId>
<version>1.5</version>
</dependency>
<dependency>
<groupId>jdom</groupId>
<artifactId>jdom</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
<parent>
<groupId>internal</groupId>
<artifactId>jar-project</artifactId>
<version>1.0</version>
</parent>
<name>Project 1</name>
<build>
<directory>${basedir}/bundles</directory>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-Version>1.0</Bundle-Version>
<Import-Package>*;resolution:=optional</Import-Package>
<Embed-Dependency>*</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
ただし、私の非 OSGI バンドルはさまざまな異なる jar に依存しており、これらの jar の一部にも依存関係があります。非 OSGI Maven プロジェクトをバンドルすると、このバンドルの直接の依存関係しか取得できません。bundleall を使用すると、xml-apis:xml-apis:jar:2.6.2 に関連するエラーが発生します。他に選択肢がない場合は、すべての依存関係のバンドルを作成できますが、依存関係が多すぎます。
どんな助けでも大歓迎です!