java - Change project type -
I have a large Java project, I want to convert my application into a plug-in project from the Java application. Is this possible? if so, how? Thanks!
Nature will need to change the project file. You can find the ".project" file in the root directory of the project. Change:
& lt; Natures & gt; & Lt; Nature & gt; Org.eclipse.jdt.core.javanature & lt; / Nature & gt; & Lt; / Nature & gt;
to:
& lt; Natures & gt; & Lt; Nature & gt; Org.eclipse.pde.PluginNature & lt; / Nature & gt; & Lt; Nature & gt; Org.eclipse.jdt.core.javanature & lt; / Nature & gt; & Lt; / Nature & gt;
Comments
Post a Comment