Reputation: 15896
I had created eclipse plugin from existing jar and I'm exporting all the packages as in below image.
Now I'm converting This plugin to Maven by using configurator
Now my plugin look like following and there no package is showing for export.
So every where I'm getting error because there is no class under this plugin in.
Question
How to convert plugin which are created by jar.?
Upvotes: 1
Views: 262
Reputation: 4989
Some things to check:
Have you overridden the default maven source folders in your pom file to match the Eclipse folder structure?
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
Below is a link to an example pom file for a working maven build of Eclipse plugins. (Disclaimer: this is one of the projects I work on)
Upvotes: 1