Eclipse: Play Framework 2 - how to hide or move dependencies from root folder
I have uploaded a game to play! 2.1.0 (using Java 1.6.0_23 and Scala 2.10.0)
does play eclipsify
n't seem to work anymore, but play eclipse
works
however the generated project is not very good, all dependencies are shown at the root.
Is there no way to generate it using a maven library called dependencies that will store all dependencies?
+3
source to share
4 answers
Usually my "final" solution is this:
eclipse with-source=true execution-environment=JavaSE-1.7
The source codes of the libraries will be available from eclipse. Use the jdk runtime version. (Note that autocomplete is also available in Play Play, hitting TAB usually helps you a lot)
0
source to share