Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] MANIFEST is not generated if custom Bnd plugin is used in maven-bundle-plugin

Hi,

I have the following issue:
  • I created a Bnd AnalyzerPlugin implementation in project A. Lets call it MyBndPlugin
  • I configured project B to use this plugin
  • MANIFEST is not generated in Eclipse into target/classes
The configuration of maven-bundle-plugin is similar to the following:

      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <extension>true</extension>
        <configuration>
          <instructions>
            <_plugin>foo.bar.MyBndPlugin</_plugin>
          </instructions>
        </configuration>
        <dependencies>
         <dependency>
           <groupId>foo.bar</groupId>
           <artifactId>foo.bar.bndplugin</artifactId>
           <version>1.0.0-SNAPSHOT</version>
         </dependency>
        </dependencies>
      </plugin>

The configuration works well if I say "mvn process-classes" on the command line.

Do you have any idea how I could make it work in Eclipse?

Thanks and regards,
Balazs Zsoldos

Back to the top