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?
source
share