To add to the existing answer here,
I also see this behavior after I upgraded from Play 2.2x to Play 2.3.x (see MigrationGuide )
I debugged the following below.
On Linux, go to the project folder, and then:
$ bash -x `which sbt` .... OUTPUT SKIPPED.... ++ (( 128 < 512 )) ++ local 'common_opts=-Xms1024m -Xmx1024m -XX:ReservedCodeCacheSize=128m' ++ [[ 1.7.0_55 < 1.8 ]] ++ local perm=256 ++ echo '-Xms1024m -Xmx1024m -XX:ReservedCodeCacheSize=128m -XX:MaxPermSize=256m' + execRunner java -Xms1024m -Xmx1024m -XX:ReservedCodeCacheSize=128m -XX:MaxPermSize=256m -jar /usr/share/sbt-launcher-packaging/bin/sbt-launch.jar + [[ -n '' ]] + [[ -n '' ]] + java -Xms1024m -Xmx1024m -XX:ReservedCodeCacheSize=128m -XX:MaxPermSize=256m -jar /usr/share/sbt-launcher-packaging/bin/sbt-launch.jar
Write the command in the last line, cancel the current process Ctrl+C and add it option -verbose in java :
java -verbose -Xms1024m -Xmx1024m -XX:ReservedCodeCacheSize=128m -XX:MaxPermSize=256m -jar /usr/share/sbt-launcher-packaging/bin/sbt-launch.jar
Finally, I added logLevel := Level.Debug to project/plugins.sbt .
However, it continues to produce the result as follows:
.... OUTPUT SKIPPED.... info] [SUCCESSFUL ] org.apache.maven.doxia#doxia-sink-api;1.1!doxia-sink-api.jar (2065ms) [debug] tried http:
Too many cans seem to be loading. Now I am using the standalone version of Activator Activator (download 356 MB here ) and it is much faster!
tuxdna Jul 24 '14 at 15:58 2014-07-24 15:58
source share