Reputation: 2996
I have very big Java a project. I want to change his type from java application to plug-in project. Is it possible? If yes, how? thanks!
Upvotes: 0
Views: 200
Reputation: 14505
You will need to change nature in your .project file. ".project" file you can find in root directory of Project. Change:
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
To:
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
Upvotes: 2
Reputation: 31590
Right click on your project -> Configure -> Convert to Plug-in Projects
Upvotes: 1