Last active
September 19, 2016 09:17
-
-
Save schmitch/30f288de8c2352d5f58cbd364d969323 to your computer and use it in GitHub Desktop.
Scala 2.12.0 Failures on Play
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Just follow the commands closely, no need to ++2.12.0-RC1, et all | |
1. Get Twirl | |
> git clone https://github.com/schmitch/twirl.git | |
> cd twirl | |
> git fetch | |
> git checkout pr113 | |
> sbt +publishLocal plugin/publishLocal | |
2. Get Play-Doc | |
> git clone https://github.com/schmitch/play-doc | |
> cd play-doc | |
> git fetch | |
> git checkout wip-scala-2.12 | |
> sbt +publishLocal | |
3. Get Playframework | |
> git clone https://github.com/schmitch/playframework | |
> cd playframework | |
> git fetch | |
> git checkout wip-scala-2.12 | |
4. Test it | |
> cd framework | |
> sbt test | |
or run the specific tests only | |
> sbt Play-WS/test | |
and | |
> sbt Play-Integration-Test/test | |
inside the framework/ Folder | |
## Details | |
it will use, since we have a lot of dependencies, specs2, akka-stream, etc...: | |
scalaVersion := "2.12.0-de7cddd-SNAPSHOT" | |
scalaBinaryVersion := "2.12.0-RC1" | |
5. Stacktraces that will occur | |
- Play-WS: https://gist.github.com/schmitch/4412f47f2a41bd7c2ac67221ae43cae0 | |
AhcCurlRequestLoggerSpec: https://github.com/playframework/playframework/blob/2d5989bdc6e478fdc6c5db529e0d7e11c23d2217/framework/src/play-ws/src/test/scala/play/api/libs/ws/ahc/AhcCurlRequestLoggerSpec.scala#L21 | |
- Play-Integration-Test: https://gist.github.com/schmitch/3cd4e62f57e411774f62ad4ecc919448 | |
FromBodyparserSpec: https://github.com/playframework/playframework/blob/d6c2673d91d85fd37de424951ee5ad9f4f4cce98/framework/src/play-integration-test/src/test/scala/play/it/http/parsing/FormBodyParserSpec.scala#L33 | |
FormFieldOrderSpec: https://github.com/playframework/playframework/blob/916487d1166744f45f30e29b7552a85159c3b015/framework/src/play-integration-test/src/test/scala/play/it/http/FormFieldOrderSpec.scala#L22 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment