Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] Including Tycho's itp02.bundle plugin in the itp04-rcp example.product

I'm trying to figure out how the pomfirst-thirdparty bundle can be used within the itp04-rcp eclipse-repository.

I figure that I should be able to run:

> cd org.eclipse.tycho-demo\itp02\build02
> mvn org.apache.felix:maven-bundle-plugin:install

And then edit the example.product file in the itp04-rcp\eclipse-repository directory:

<plugins>
  <plugin id="tycho.demo.itp02.bundle" />
</plugins>

When I run mvn package in itp04-rc it complains:

    Included element tycho.demo.itp02.bundle 0.0.0 is missing.

This works:

<plugins>
  <plugin id="example-bundle" version="0.0.0" />
</plugins>

<features>
  <!-- <feature id="example-feature" version="0.0.0"/> -->
  <feature id="org.eclipse.rcp" version="0.0.0"/>
  <feature id="org.eclipse.equinox.p2.user.ui" version="0.0.0"/>
</features>

...so why not the itp02.bundle plugin?

Back to the top