diff --git a/README.md b/README.md index 4cc7ee4f6..38afc29ff 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,7 @@ Here is a list of sbt commands for daily development: > package # Create a jar file in the target folder of each project > findbugs # Produce findbugs report in target/findbugs > jacoco:cover # Report the code coverage of tests to target/jacoco folder +> jcheckStyle # Run check style ``` ### Publishing diff --git a/project/plugins.sbt b/project/plugins.sbt index 3c5b99d03..0d70c54a7 100755 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -9,4 +9,6 @@ addSbtPlugin("de.johoop" % "findbugs4sbt" % "1.3.0") addSbtPlugin("de.johoop" % "jacoco4sbt" % "2.1.6") +addSbtPlugin("org.xerial.sbt" % "sbt-jcheckstyle" % "0.1.2") + scalacOptions ++= Seq("-deprecation", "-feature")