aboutsummaryrefslogblamecommitdiff
path: root/test/simple-fixed-cbt/build/build.scala
blob: 857f6b7bfd401d562f3175c3c1c6c9508e03477a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

            
                                                                                







                                                                                    
                             

                                       
import cbt._

// cbt:https://github.com/cvogt/cbt.git#fe04889a6c3fe73ccdb4b19b44ac62e2b1a96f7d
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 version: String = "0.1"
  def name: String = "simple-fixed-cbt"
}