Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

View Eclipse Run As configurations from filesystem

Tags:

java

eclipse

I'm interested in viewing (not configuring/changing, just viewing) the Maven run configurations I've created created - and not from Eclipse's dialog/window but via finding them in the filesystem and viewing them in some ordinary text editor.

Can they be viewed this way? In which location are they stored?

Thanks!

like image 713
Martin Spa Avatar asked Apr 29 '26 13:04

Martin Spa


1 Answers

You find the configuration files (XML) relative to your workspace in

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

I found them using unix tools (In case the location has changed, e.g. new version of eclipse)

find . -exec  grep "UNIQUESTRING" {} \; -print

As UNIQUESTRING you could use some parameter entered in the dialog.

like image 154
stacker Avatar answered May 02 '26 02:05

stacker



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!