web-dev-qa-db-ja.com

プロジェクトビルドエラー:不明なパッケージ:バンドル

pdfbox をビルドしようとしていますが、このMavenエラーを解決できないようです:

Project build error: Unknown packaging: bundle

これは、サブプロジェクトpdfboxおよびpreflightにのみ表示されます。

私はm2eコネクタとビルドヘルパーをインストールし、提案されたように here Tychoをインストールしましたが、どちらも役に立ちませんでした。

<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.Apache.pdfbox</groupId>
        <artifactId>pdfbox-parent</artifactId>
        <version>2.0.0-SNAPSHOT</version>
        <relativePath>../parent/pom.xml</relativePath>
    </parent>

    <artifactId>pdfbox</artifactId>
    <packaging>bundle</packaging> <!-- Project build error: Unknown packaging: bundle -->

    <!-- ... -->

    <dependencies>
        <!-- ... -->
    </dependencies>

    <build>
       <!-- ... -->
    <pluginManagement>
    <plugins>
        <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
                <argLine>-Xmx128m</argLine>
                <excludes>
                    <exclude>org/Apache/pdfbox/TestAll.Java</exclude>
                    <exclude>org/Apache/pdfbox/util/TestPDFToImage.Java</exclude>
                </excludes>
                <systemPropertyVariables>
                    <Java.util.logging.config.file>src/test/resources/logging.properties</Java.util.logging.config.file>
                </systemPropertyVariables>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.Apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <extensions>true</extensions>
            <configuration>
                <instructions>
                    <Include-Resource>
                        {maven-resources},
                        META-INF=target/maven-shared-archive-resources/META-INF,
                        org/Apache/pdfbox/resources=target/classes/org/Apache/pdfbox/resources
                    </Include-Resource>
                </instructions>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.Apache.rat</groupId>
            <artifactId>Apache-rat-plugin</artifactId>
            <configuration>
                <excludes>
                    <exclude>src/main/resources/org/Apache/pdfbox/resources/afm/*</exclude>
                    <exclude>src/main/resources/org/Apache/pdfbox/resources/icc/*</exclude>
                    <exclude>src/main/resources/org/Apache/pdfbox/resources/glyphlist/glyphlist.txt</exclude>
                    <exclude>src/main/resources/org/Apache/pdfbox/resources/glyphlist/zapfdingbats.txt</exclude>
                    <exclude>src/main/resources/META-INF/services/*</exclude>
                    <exclude>src/test/resources/input/rendering/*.ai</exclude>
                    <exclude>src/test/resources/output/*</exclude>
                    <exclude>release.properties</exclude>
                    <exclude>src/test/resources/org/Apache/pdfbox/encryption/*.der</exclude>
                    <exclude>src/test/resources/org/Apache/pdfbox/encryption/*.pfx</exclude>
                    <exclude>src/test/resources/org/Apache/pdfbox/filter/*.bin</exclude>
                </excludes>
            </configuration>
        </plugin>
    </plugins>
    </pluginManagement>
    </build>

</project>

誰かがこの問題を解決する方法を知っていますか?

14
displayname

pluginManagementの外にmaven-bundle-pluginを移動します。 Mavenは<build><plugins>のみを検索し、追加情報としてpluginManagementを使用します。

20
Robert Scholte

私の場合、それはすでにプラグイン管理タグの外にありました。追加することで解決されました

<extensions>true</extensions>

プラグインタグに

28
pooshla

あなたのpom.xmlにこれを試してください、それは私のもので動作します:

<build>
    <plugins>
        <plugin>
            <groupId>org.Apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <extensions>true</extensions> <!--add this line-->
            <configuration>
                <instructions>
                    <Export-Package>com.demo.hello.*</Export-Package>
                </instructions>
            </configuration>
        </plugin>
    </plugins>
</build>
2
Sniper Law

の場合には

https://github.com/rc-dukes/dukes/issues/22

非常に奇妙な行動があります。権限を変更することで問題を解決できると考えました。しかし、実際には、関連するコンテンツが変更されていなくても、2番目または3番目のビルドのみが成功する奇妙なトラビス動作と関連しているようです。まだ解決策はありませんが、数回再試行するための回避策についてここで述べます。実際の修正についてのヒントは大歓迎です。

0
Wolfgang Fahl