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

class Build(val context: Context) extends Plugin {
  override def dependencies =
    super.dependencies ++
    Resolver( mavenCentral ).bind(
      ScalaDependency("com.geirsson", "scalafmt", "0.2.5")
    )
}