Ronald
Ronald

Reputation: 2927

How to run Eclipse .launch file in Intellij

I was using Eclipse for a while to develop a Java/web project, we have some scripts with the ending .launch. The file to be launched starts with the following two lines:

> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
> <launchConfiguration
> type="org.eclipse.jdt.launching.localJavaApplication">

Now I have started to work with IntelliJ?

Upvotes: 5

Views: 14161

Answers (2)

Maksym Kerch
Maksym Kerch

Reputation: 41

For a new version of Intellij, you would need to download the older version.

convert and then use converted properties in the new version of Intellij:)

Upvotes: 0

dchan
dchan

Reputation: 383

steps to launch eclipse launcher in intellij

  1. download the plugin
  2. install it in intellij
  3. restart intellij
  4. right click .launch
  5. click "convert with eclipser"
  6. check run/debug configurations, an new application process should be added
  7. check working directory is correct or not, if not fix it
  8. run that process, eclipse launcher can be executed

Here is the recipe to launch it using eclipser

How do I run an Eclipse launcher file in IntelliJ IDEA?

Upvotes: 11

Related Questions