aboutsummaryrefslogtreecommitdiff
path: root/plugins/scalastyle/build/build.scala
blob: 192294207401e564ed0a463af5b5b27943e59205 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import cbt._

class Build(val context: Context) extends Plugin {
  private val scalaStyleVersion = "0.8.0"

  override def dependencies = (
    super.dependencies ++
    Resolver( mavenCentral ).bind(
      ScalaDependency( "org.scalastyle", "scalastyle", scalaStyleVersion )
    )
  )
}