how to import a play framework project 2.5 for eclipse

0

Hello, how could I import a lay framework project into eclipse, in previous versions only the eclipse command inside the project was enough, but now the documentation is a bit confusing in that respect.

    
asked by anonymous 12.03.2016 / 21:53

1 answer

1

After starting the play console, from the eclipse layer in the project folder:

$ play new projeto_01
$ cd projeto_01
$ play

[projeto_01] $ eclipse

The eclipse command will generate the files to import the project. Then just open eclipse and go to File->import , n window that will appear, choose General->Existing Projects into Workspace and click Next . The next window asks for the project path (try to leave your project play in the same directory as the eclipse projects) and select your project play and confirm.

    
12.03.2016 / 22:44