sbt: "test" works "test:run" not
- by Martin
I try to establish a build pipeline on Jenkins with a Play(2.0.2) project.
As I want to just build the sources once and use the classes for downstream builds, I now have created a "compile"-job, that runs "sbt test:compile". That works so far.
The next job should then just run the compiled tests. If I use "sbt test" it works as expected, but…