Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert back maven project to java web project

I have converted my java web project to maven project using m2e plugin in eclipse. Now i need to convert it back to java web project. So now how it is possible to change it back to java web project.

like image 970
Tarun Chaudhary Avatar asked Oct 27 '14 13:10

Tarun Chaudhary


People also ask

How do I undo a Maven project?

In the Maven tool window, right-click the project that you want to ignore. From the context menu, select Ignore Project. In the window that opens, click Yes if you want to remove the project from the Projects tool window.

How do I revert a Maven project in Eclipse?

Right click on the project -select Maven->Disable Dependency Management. Now type "Your Project Name"/bin eg. TestProject/bin, in the Default Output Folder field to point to default. Now click ok and delete the target directory.

Is Maven project same as Java project?

Apache Maven is a cornerstone of Java development, and the most used build management tool for Java. Maven's streamlined, XML-based configuration model enables developers to rapidly describe or grasp the outlines of any Java-based project, which makes starting and sharing new projects a snap.


1 Answers

Please try the following:

  1. Open context menu on the maven project
  2. Select "Maven" -> "Disable Maven Nature"

Hope that helps.

like image 174
DirkNM Avatar answered Oct 27 '22 03:10

DirkNM