aboutsummaryrefslogtreecommitdiff
path: root/test/simple-fixed/build/build.scala
blob: 0215c432ab10a6cafd859d216f447f1a8989c5e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import cbt._

class Build(context: cbt.Context) extends BasicBuild(context){
  override def dependencies = (
    super.dependencies
    ++
    Seq(
      GitDependency("https://github.com/cvogt/cbt.git", "f11b8318b85f16843d8cfa0743f64c1576614ad6", Some("test/library-test"))
    )
  )
}