How to remove launch configuration histories in eclipse?

后端 未结 5 667
北海茫月
北海茫月 2021-02-01 14:51

Right click an arbitrary existing project in Package Explore, choose \"export...\" - \"Java\" - \"Runnable JAR file\", I find all the old projects in the \"launch configuration\

相关标签:
5条回答
  • 2021-02-01 14:56

    Under Window...Preferences...Run/Debug...Launching...Launch Configurations, you can activate and deactivate some filters that restrict what is shown in Run...Run Configurations. I think it is what you are looking for.

    0 讨论(0)
  • 2021-02-01 15:01

    This question seems to be well answered here, however, to make changes I have simply deleted every undesirable launch configuration from the below path.

    ${WORKSPACE}/.metadata/.plugins/org.eclipse.debug.core/.launches/Delete all the .class LAUNCH Files
    

    After deleting the files, it is necessary to restart Eclipse for the changes to take effect.

    0 讨论(0)
  • 2021-02-01 15:03

    Go to Run->Run configuration. Delete the existing saved projects under the Java Application.

    Then run the class, having main method from eclipse. It will be automatically set.

    Now create runnable Jar.

    0 讨论(0)
  • 2021-02-01 15:06

    Eclipse menu -> Run -> Run Configurations... pops up the list of all viable run configurations, grouped by type. You are looking for those under Java Application. Any of these are deletable. Delete them and they will no longer show up in Run/Launch configuration lists.

    0 讨论(0)
  • 2021-02-01 15:19
    • Go to Run->Run configuration. Delete the existing saved projects under the Java Application.
    • Run the class, having main method from eclipse. It will be automatically set.
    • create runnable Jar.
    0 讨论(0)
提交回复
热议问题