Working with Play is easy. You don’t even need a sophisticated IDE, because Play compiles and refreshes the modifications you make to your source files automatically, so you can easily work using a simple text editor. However, using a modern Java or Scala IDE provides cool productivity features like auto-completion, on-the-fly compilation, assisted refactoring and debugging. Eclipse Generate configuration Play provides a command to simplify Eclipse configuration. To transform a Play application into a working Eclipse project, use the eclipse command: without the source jars: [ My first application ] $ eclipse if you want to grab the available source jars (this will take longer and it’s possible a few sources might be missing): [ My first application ] $ eclipse with - source = true Note if you are using sub-projects with aggregate, you would need to set skipParents appropriately: import com . typesafe . sbteclipse . core . EclipsePlugin . EclipseKeys o...
Comments
Post a Comment