aboutsummaryrefslogtreecommitdiff
path: root/test/simple-fixed-cbt/build/build.scala
blob: 632ddb42decfa5de376429be874bd5bea0b864ef (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#0fcdda6062c4e2720f602d976d85961970f44fa0
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"
}