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

class Build(val context: Context) extends Plugin {
  private val ScalafmtVersion = "0.5.7"

  override def dependencies =
    super.dependencies ++
    Resolver( mavenCentral ).bind(
      ScalaDependency("com.geirsson", "scalafmt-cli", ScalafmtVersion)
    )
}