2

希望有人可以帮助我解决这个问题。我正在尝试使用 maven-bundle-plugin 从我的 maven 依赖项中自动生成我的 OSGi 清单。我在 OSGi 容器中安装了一些依赖项,因为它们在多个包中共享。例如,春天。我正在设置这些依赖项的范围,如提供的那样(因为它们是在容器中提供的,而不是被嵌入的)。但是,我无法让 maven-bundle-plugin 将这些依赖项包含在清单的部分中。任何想法如何做到这一点?

<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>com.example.osgi.test</groupId>
<artifactId>spring-mvc-bundle</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>

<properties>
    <spring.version>3.0.5.RELEASE</spring.version>
    <spring.osgi.version>1.2.1</spring.osgi.version>
</properties>

<!-- Module dependencies -->
<dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>${spring.version}</version>
        <scope>provided</scope> 
    </dependency>
    <!-- Other dependencies here... -->
</dependencies>

<!-- Build plugins + config -->
<build>
    <plugins>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.2</version>
            <executions>
                <execution>
                    <id>create-war</id>
                    <phase>package</phase>
                    <goals>
                        <goal>war</goal>
                    </goals>
                </execution>
            </executions>

            <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.5</version>
            <executions>
                <execution>
                    <id>bundle-manifest</id>
                    <phase>process-classes</phase>
                    <goals>
                        <goal>manifest</goal>
                    </goals>
                </execution>
            </executions>
            <extensions>true</extensions>
            <configuration>
                <supportedProjectTypes>
                    <supportedProjectType>war</supportedProjectType>
                    <supportedProjectType>jar</supportedProjectType>
                    <supportedProjectType>bundle</supportedProjectType>
                </supportedProjectTypes>
            </configuration>
        </plugin>
    </plugins>
</build>

4

1 回答 1

0

这在很大程度上取决于您对这些依赖项的使用。如果它们与动态类加载一起使用,则 bnd 工具不知道如何处理这些。因此,您需要将这些依赖项添加到配置部分的一部分中。这样,除了已经找到的 Imports 之外,它们还会作为 Imports 添加到您的 Manifest 中。

于 2012-10-22T15:30:45.717 回答