aboutsummaryrefslogtreecommitdiff
path: root/plugins/scalafmt/build/build.scala
blob: 0d4900c4d7a2e74b044a9570a68fdc5dc178cb17 (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.3.1")
    )
}