You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please also publish builds for Scala 2.13.0-M5. (Add it to crossScalaVersions, also please update to latest 2.12 and latest 2.11)
Your probably have to set PlayKeys.playOmnidoc := false in build.sbt to make it work.
Also it could be that you have to adjust some twirl templates because now curly brackets are needed in some cases.
E.g. twirl code like
@something.map { case SomeThing(foo) =>
some html
}
becomes this:
@something.map { case SomeThing(foo) => {
some html
}}
Please add support for Play 2.7.
https://blog.playframework.com/play-2-7-0-is-here/
https://www.playframework.com/documentation/2.7.x/Highlights27
https://www.playframework.com/documentation/2.7.x/Migration27
Please also publish builds for Scala
2.13.0-M5. (Add it tocrossScalaVersions, also please update to latest 2.12 and latest 2.11)Your probably have to set
PlayKeys.playOmnidoc := falseinbuild.sbtto make it work.Also it could be that you have to adjust some twirl templates because now curly brackets are needed in some cases.
E.g. twirl code like
@something.map { case SomeThing(foo) => some html }becomes this: