Is there a way to include regular maven dependencies in the eclipse plugin

I am creating a framework and want to use it as a standalone Java application, and as an eclipse plugin that exports all packages to a java project.

I am currently doing this with two projects (java + eclipse plugin), creating a java project, copying the jar file, adding the file to the plugin path and then (manually) exporting all the packages.

Is there a way to automate this process with maven?

+4
source share
2 answers

The Eclipse Tycho project aims to create Eclipse plugins with Maven.

Tycho - Maven Eclipse OSGi Maven. Eclipse OSGi , .., Maven POM

, Tycho OSGi MANIFEST, xml config ..

+3

, maven-eclipse-plugin , Eclipse pom .

, , Tycho , pom-first. , org.apache.felix maven-bundle-plugin manifest.mf / .

, , , ....

+1

All Articles