p2-maven-plugin icon indicating copy to clipboard operation
p2-maven-plugin copied to clipboard

Maven3 plugin that automates the third-party dependency management for Eclipse RCP

Results 80 p2-maven-plugin issues
Sort by recently updated
recently updated
newest added

I would like to declare the bundles that I need to pack into a p2 repository as dependencies in the project pom. This will allow me to use/compose a p2...

If a Maven artifact has a "provided" dependency it won't be added to the p2 repository. This may lead to unresolved dependencies in an OSGi application because usually nothing is...

When using p2 resolver, is there any way to tell p2-maven-plugin to pick the latest available version ? for big list of plugins fetch from a p2 repository, it would...

I recently followed your minimal example for bundling the commons library which worked fine. As an experiment I tried bundling `org.apache.avro:avro:1.7.7`. I successfully created a site `mvn p2:site` `[INFO] Scanning...

Hello, The documentation explains how to add a feature into the generated p2 repository. Is it possible to add a feature found in p2 (like for plugins) ?

I am using the below code snippet inside pom file. The plugins folder is getting generated successfully, but the features folder is not getting generated org.reficio p2-maven-plugin 1.1.0 default-cli org.eclipse.core:org.eclipse.core.runtime:3.7.0...

The unpack attribute can be specified at the feature level only and will apply to all the plugins inside the feature. Would be nice to be able to specify it...

Why artifacts have to be defined using "proprietary" tags `` in plugin configurations, why standard dependencies cannot be used? The p2-maven-plugin should have full visibility of defined dependencies, why not...

Unfortunately some stuff still uses the default target/repository directory. I managed to mostly override it with additional args: ``` ${destinationDirectory} -artifactRepository file:${destinationDirectory} -metadataRepository file:${destinationDirectory} ``` However, I'm still getting a...