Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

playframework 2.5.0 Template fail to compile (fresh one)

I would like to get started with play running play 2.5... but even installing the template with activator "play-java" has an error.

Using unsupported version of Play: 2.5.0

I have downloaded the full activator package and the minimal. Both fail on 2 machines(JDK 73).

NO clue how to catch up on this, perhaps some could help me out. I would appreciate it very much.

Bets regards

like image 756
Xairam Avatar asked Mar 06 '16 13:03

Xairam


1 Answers

Using 'activator ui', causes the activator to cycle. The error message is "Getting 'Using unsupported version of Play: 2.5.0'". The issue tracking the problem is https://github.com/typesafehub/activator/issues/1102.

Using 'activator' without the ui argument is a work-around.

Change directories to the play-java directory and running ./activator without the ui argument. This brings up the sbt command line. Sbt commands help, about, tasks, update, compile, test, and run work. A web browser pointed at localhost:9000 will contain a text field with "You're using Play 2.5.0" as content.

The "run" command starts a Netty server. Application interaction is possible using localhost:9000 in a web browser.

like image 137
user3537845 Avatar answered Sep 20 '22 08:09

user3537845