Does anyone know how to get the scala flash version to run on the Google App Engine? At the moment, I'm trying to launch the default application. I am using Play 1.2.2 with the gae-1.4 and scala -0.9.1 modules.
I created a default application with:
play new appname --with scala
I updated application.conf with
module.gae=${play.path}/modules/gae-1.4
I added my application id to war / WEB-INF / appengine-web.xml
Then I deployed it to GAE:
play gae:deploy --gae=C:\AppEngine\appengine-java-sdk-1.5.2\
In any case, the deployment seems to work fine, but when I try to start it, I get the following error:
play.Logger niceThrowable: Cannot load jar:file:/base/data/home/apps/appname/1.352166538901100396/WEB-INF/lib/play-scala.jar!/play.plugins
java.lang.NullPointerException
at play.scalasupport.ScalaPlugin.<init>(ScalaPlugin.scala:166)
at java.lang.Class.newInstance0(Class.java:372)
at java.lang.Class.newInstance(Class.java:325)
at play.plugins.PluginCollection.loadPlugins(PluginCollection.java:100)
at play.Play.init(Play.java:286)
...
Does anyone know what might cause this? At the moment, I am trying to start the default web application.
source
share