views:

35

answers:

2

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!

+1  A: 

Right click on your project -> Configure -> Convert to Plug-in Projects

Alberto Zaccagni
+1  A: 

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>
YoK