import cbt._ // cbt:https://github.com/cvogt/cbt.git#ca412e26d70a6615153136019b7966acb9939446 class Build(context: cbt.Context) extends BasicBuild(context){ override def dependencies = ( super.dependencies ++ Seq( GitDependency("https://github.com/xdotai/diff.git", "7ad3920158828d72b9ecb1ba9746fe83e2643824") ) ++ Resolver(mavenCentral).bind( ScalaDependency("com.typesafe.play", "play-json", "2.4.4"), MavenDependency("joda-time", "joda-time", "2.9.2"), // the below tests pom inheritance with dependencyManagement and variable substitution for pom properties MavenDependency("org.eclipse.jgit", "org.eclipse.jgit", "4.2.0.201601211800-r"), // the below tests pom inheritance with variable substitution for pom xml tag contents MavenDependency("com.spotify", "missinglink-core", "0.1.1") ) ++ Resolver( mavenCentral, bintray("tpolecat"), sonatypeSnapshots ).bind( "org.cvogt" %% "play-json-extensions" % "0.8.0", "ai.x" %% "lens" % "1.0.0" ) ) }