EK.
EK.

Reputation: 2996

Change project type

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

Answers (2)

YoK
YoK

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

Alberto Zaccagni
Alberto Zaccagni

Reputation: 31590

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

Upvotes: 1

Related Questions