How to open existing Clojure project in Eclipse?

2019-05-17 07:33发布

Ive tried to do it usual way File -> Import -> General -> Existing project (as for java projects) BUT eclipse dont see clojure projects and cannot open it :( do you have any idea why ?

2条回答
狗以群分
2楼-- · 2019-05-17 08:09
  1. Install Counterclockwise plugin in Eclipse (from eclipse marketplace). This brings clojure and leiningen support to eclipse.

  2. Add lein2-eclipse plugin to your project.clj :

    :plugins [[lein2-eclipse "2.0.0"]]

  3. Run following command inside the project directory :

    lein eclipse

This generates necessary project files.

  1. Import the project into eclipse ( File -> Import -> General -> Existing project ).

  2. Right click on the project in eclipse then "Configure > Convert to leiningen project"

查看更多
Summer. ? 凉城
3楼-- · 2019-05-17 08:14

You need a plugin for a Clojure project in Eclipse. Check Counterclockwise.

Although I personally use Counterclockwise, I think there are better IDEs for Clojure than Eclipse, for example LightTable.

查看更多
登录 后发表回答