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

// cbt:https://github.com/cvogt/cbt.git#6906ad4ad5f5b018e3493af8d3d4d9df8ac1e6e7
class Build(val context: cbt.Context) extends PackageJars{
  override def dependencies = super.dependencies ++ Seq(
    DirectoryDependency( context.cbtHome ++ "/test/library-test" )
  ) ++ Resolver( mavenCentral ).bind(
    MavenDependency("org.eclipse.jgit", "org.eclipse.jgit", "4.2.0.201601211800-r"),
    MavenDependency("com.spotify", "missinglink-core", "0.1.1")
  )
  def groupId: String = "cbt.test"
  def defaultVersion: String = "0.1"
  def name: String = "simple-fixed-cbt"
}