Getting an exception when launching the game environment in the console

I have a v2.2.1 Windows game that worked previously. However, now when I run "play run" in the console, I get the following error:

java lang nosuchmethodexception: play.core.server.NettyServer.maindevhttpmode(play.core.SBTLink, play.core.SBTDocHandler

      

I have SBT v 0.13.1 on my computer. Any ideas on what might be causing this issue and how to fix it, preventing re-installing or updating the game environment - I've already tried playing a clean game and reloading the game, but it didn't help.

The JDK version is 1.7.

+3


source to share


1 answer


The problem was triggered (not yet sure about the root issue) due to the following dependency, and I was able to start playing after removing that dependency from my build sbt file:

   Resolver.url("Edulify Repository", url("http://edulify.github.io/modules/releases/"))(Resolver.ivyStylePatterns)

      

&



   "com.edulify" %% "play-hikaricp" % "1.4.1",

      

This dependency was added to add support for hikaricp DB connection pooling as a playout module. Perhaps I made a mistake (or did not read the requirements clearly enough when adding this module) - will proceed to a later stage.

+4


source







All Articles