aboutsummaryrefslogblamecommitdiff
path: root/test/simple/build/build.scala
blob: d3887b30c3b16994e1191a2f49d710fd4cf96938 (plain) (tree)
1
2
3
4
5
6
7
8





                                                               
                                                      
                                                                                                    



                                                                                                             
                         
 
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 for pom properties
    JavaDependency("org.eclipse.jgit", "org.eclipse.jgit", "4.2.0.201601211800-r"),
    // the below tests pom inheritance with variable substitution for pom xml tag contents
    JavaDependency("com.spotify", "missinglink-core", "0.1.1")
  ) ++ super.dependencies
}