Play framework 2.0 continuous integration setup

前端 未结 4 2039
情深已故
情深已故 2021-01-30 22:43

I am looking for ideas for a Play 2.0 continuous integration setup. It would contain typical jobs like build after a git push, nightly builds with deployment to a test Heroku in

4条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-30 23:19

    I found useful to add JUnit reporting plugin as I couldn't get test results to be displayed otherwise.

    https://github.com/bseibel/sbt-simple-junit-xml-reporter-plugin

    For PMD and Checkstyle I used this: https://github.com/ymasory/sbt-code-quality.g8

    For test coverage I am using JaCoCo at the moment: http://ronalleva.com/2012/04/25/jacoco-and-play.html

    Scct could be other option for coverage: http://mtkopone.github.com/scct/

    With those and PMD, CheckStyle and JaCoCo plugins for Jenkins I have now quite ok setup for a Play 2 Java project.

提交回复
热议问题