gpt4 book ai didi

xml - 项目构建错误 : Unknown packaging: bundle

转载 作者:数据小太阳 更新时间:2023-10-29 01:40:20 26 4
gpt4 key购买 nike

我正在尝试构建 pdfbox但我似乎无法解决这个 Maven 错误:

Project build error: Unknown packaging: bundle

仅出现在子项目 pdfboxpreflight 中。

我已经按照建议安装了 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>

有人知道如何解决这个问题吗?

最佳答案

在我的例子中,它已经在插件管理标签之外。通过添加

为我解决了这个问题

<extensions>true</extensions>

到插件标签

关于xml - 项目构建错误 : Unknown packaging: bundle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27994265/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com