Migration from Play 2.4.6 to Play 2.5.9 Evolutions Issue

103 views Asked by At

I am trying to migrate Play 2.4.6 to Play 2.5.9. I am using this seed template https://github.com/mariussoutier/play-angular-require-seed

I am facing issues with Evolutions. When I start the server. its trying to apply all SQL files downs and then Ups

What seems to be going wrong with Play 2.5.9. Earlier I had tried migrating to 2.5.14 and there were hell lot of memory leak and threads getting creating. Play Scala Slick 3.0 Connection Pool Issue | Play 2.4 vs Play 2.5 Issues

My dependancies build.sbt file looks like below

libraryDependencies ++= Seq(
filters,
cache,
ws,
specs2 % Test,
evolutions,
// WebJars (i.e. client-side) dependencies
"org.webjars" % "requirejs" % "2.3.2",
"org.webjars" % "underscorejs" % "1.8.3",
"org.webjars" % "jquery" % "1.12.4",
"org.webjars" % "bootstrap" % "3.3.7-1" exclude("org.webjars", "jquery"),
"org.webjars" % "angularjs" % "1.4.10" exclude("org.webjars", "jquery"),
"com.typesafe.play" %% "play-slick" % "2.0.2",
"com.typesafe.play" %% "play-slick-evolutions" % "2.0.2",
// "com.typesafe.slick" % "slick_2.11" % "3.2.0",
"com.typesafe.play" % "play-mailer_2.11" % "5.0.0",
"org.postgresql" % "postgresql" % "42.1.1",
"com.github.nscala-time" % "nscala-time_2.11" % "2.16.0",
"org.scalatest" % "scalatest_2.11" % "3.0.3",
"org.specs2" % "specs2-matcher-extra_2.11" % "3.8.9" % "test",
"org.apache.httpcomponents" % "httpcore" % "4.4.6",
"org.apache.httpcomponents" % "httpclient" % "4.5.3",
"com.amazonaws" % "aws-java-sdk-s3" % "1.11.117",
"ai.api" % "libai" % "1.4.8",
"org.apache.poi" % "poi" % "3.16",
"org.apache.poi" % "poi-ooxml" % "3.16",
"org.apache.poi" % "poi-ooxml-schemas" % "3.16",
"commons-io" % "commons-io" % "2.5"
)
0

There are 0 answers