aboutsummaryrefslogtreecommitdiff
path: root/examples/build-scalatest/build/build/build.scala
blob: 6b1a98e543dd188f0cf3fd458c16c8489e1ac0bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import cbt._
import java.net.URL
import java.io.File
import scala.collection.immutable.Seq

class Build( context: Context ) extends BuildBuild( context ){

  override def dependencies = (
    super.dependencies ++
      Resolver( mavenCentral ).bind(
      ScalaDependency("org.scalatest","scalatest","2.2.4")
    ) :+ BuildDependency(new File(context.cbtHome + "/plugins/scalatest"))
  )
}