8

OpenJDK7を使用してOSGi仕様4.3に対してOSGiバンドルをコンパイルしようとしていますが、エラーが発生します。

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.5:compile (default-compile) on project example: Compilation failure
[ERROR] /tmp/baka/example/src/main/java/org/example/Activator.java:[14,24] error: type ServiceReference does not take parameters

これが私のActivator.javaです:

package org.example;

import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;

public class Activator implements BundleActivator {
    @Override
    public void start(BundleContext bundleContext) throws Exception {
        ServiceReference<Runnable> ref = bundleContext.getServiceReference(Runnable.class);
    }

    @Override
    public void stop(BundleContext bundleContext) throws Exception {
    }
}

と私のpom.xml:

<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>org.example</groupId>
    <artifactId>example</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>bundle</packaging>

    <name>example</name>
    <url>http://maven.apache.org</url>

    <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>
        </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>
                        <Private-Package>org.example</Private-Package>
                        <Bundle-Activator>org.example.Activator</Bundle-Activator>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

OpenJDK 6を使用している場合、このエラーは表示されません。OpenJDK7で動作させるためのヒントはありますか?

4

1 に答える 1

11

OSGiソースコードをJava7のjavacで再コンパイルする必要があります。OSGiは-targetjsr14を使用してJava6javacでコードをコンパイルしました。Java 7 javacは、このようなクラスファイルに対するコンパイルのサポートを削除しました:http://bugs.sun.com/bugdatabase/view_bug.do?bug_id = 7078419

R5以降、OSGiは-targetjsr14クラスファイルを出荷しなくなります。

[2012年10月31日更新]

OSGiは、Java7用に再コンパイルされた4.3jarファイルを提供するようになりました。http://blog.osgi.org/2012/10/43-companion-code-for-java-7.htmlを参照してください。

于 2012-06-06T15:11:43.780 に答える