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 ?
相关问题
- Eclipse and Mylyn : how to disable grey files in t
- Better Sequence Duplicate Remover
- Installing Pydev for Eclipse throws error
- Error in Scala Compiler: java.lang.AssertionError:
- How to remove unused imports using Eclipse and not
相关文章
- selenium+eclipse 打开网页时报错
- Eclipse failing to open
- Eclipse how can I indent C++ preprocessor macros
- Why is FindBugs ignoring my check for null?
- Eclipse cleanup - what are the “.index” files - ca
- Eclipse plugin to find out unused methods in a cla
- Spring NamespaceHandler issue when launching Maven
- Factor Clojure code setting many different fields
Install Counterclockwise plugin in Eclipse (from eclipse marketplace). This brings clojure and leiningen support to eclipse.
Add lein2-eclipse plugin to your project.clj :
:plugins [[lein2-eclipse "2.0.0"]]
Run following command inside the project directory :
lein eclipse
This generates necessary project files.
Import the project into eclipse ( File -> Import -> General -> Existing project ).
Right click on the project in eclipse then "Configure > Convert to leiningen project"
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.