gpt4 book ai didi

maven - Apache Felix Maven 插件不工作

转载 作者:行者123 更新时间:2023-12-04 19:13:26 24 4
gpt4 key购买 nike

简单的。这是 maven pom.xml 中的 felix 插件:

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>

<!-- allows the route to be ran via 'mvn camel:run' -->
<!-- <plugin> <groupId>org.apache.camel</groupId> <artifactId>camel-maven-plugin</artifactId>
<version>2.10.1</version> </plugin> -->

<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>xyz</Bundle-SymbolicName>
<Export-Package>tutorial.simplerouter</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>`

并且它没有正确生成 MANIFEST.MF 文件:
Manifest-Version: 1.0
Archiver-Version: Plexus Archiver
Created-By: Apache Maven
Built-By: rb
Build-Jdk: 1.6.0_35

上面生成的 manifest.mf 是不正确的。

请告诉我为什么。

最佳答案

也许有点晚了,但我曾经遇到过类似的问题。我通过添加 <packaging>bundle</packaging> 解决了到 POM。

关于maven - Apache Felix Maven 插件不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12759622/

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