Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where are Run configurations stored?

Tags:

I'm running Liclipse 2.5.3 on Mac OS. I renamed my project causing me to lose all my run configurations. When I tried recreating one, it says the file exists. However, there are no run configurations present.

Where are the run configs stored?

like image 678
Joe Chiarelli Avatar asked Apr 15 '16 16:04

Joe Chiarelli


People also ask

Where are run configurations stored in Eclipse?

These configrations are located in . metadata/. plugins/org. eclipse.

Where are run configurations stored in IntelliJ?

By default, it is disabled, and IntelliJ IDEA stores run configuration settings in . idea/workspace. xml.

What are run configurations?

Run configuration is a set of parameters, arguments, and settings that define how an application is launched.


1 Answers

The normal location for launches is in the workspace in the

.metadata/.plugins/org.eclipse.debug.core/.launches 

folder.

Each launch configuration is in a separate xxx.launch file which is a xml file.

You can also Export and Import launch configurations.

like image 110
greg-449 Avatar answered Nov 03 '22 08:11

greg-449