Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Project build error: Unknown packaging: bundle

I am trying to build pdfbox but I can't seem to resolve this Maven error:

Project build error: Unknown packaging: bundle

Which appear only in the sub-projects pdfbox and preflight.

I have installed the m2e connector and build helper and as suggested here I've installed Tycho but it didn't help either.

<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>

Does anybody know how to solve this issue?

like image 834
Stefan Falk Avatar asked Jan 16 '15 23:01

Stefan Falk


3 Answers

in my case it was already outside of a plugin-management tag. it was solved for me by adding

<extensions>true</extensions>

to the plugin tag

like image 128
pooshla Avatar answered Nov 08 '22 14:11

pooshla


Move maven-bundle-plugin outside of pluginManagement. Maven will only look for <build><plugins> and uses pluginManagement for additional information.

like image 24
Robert Scholte Avatar answered Nov 08 '22 14:11

Robert Scholte


try this for your pom.xml, it works for mine:

<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>
like image 5
Sniper Law Avatar answered Nov 08 '22 13:11

Sniper Law