aboutsummaryrefslogtreecommitdiff
path: root/test/simple/build/build.scala
blob: f3efc1990a32849da2d1a5f7cf4c749ccd570ae3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import cbt._
import scala.collection.immutable.Seq
import java.io.File
class Build(context: cbt.Context) extends BasicBuild(context){
  override def dependencies = Seq(
    ScalaDependency("com.typesafe.play", "play-json", "2.4.4"),
    JavaDependency("joda-time", "joda-time", "2.9.2"),
    GitDependency("https://github.com/xdotai/diff.git", "2e275642041006ff39efde22da7742c2e9a0f63f"),
    // the below tests pom inheritance with dependencyManagement and variable substitution
    JavaDependency("org.eclipse.jgit", "org.eclipse.jgit", "4.2.0.201601211800-r")
  ) ++ super.dependencies
}