aboutsummaryrefslogtreecommitdiff
path: root/test/simple/build/build.scala
blob: dd5f95b2c12aef2eb1253755b978d4d7a8b723de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import cbt._

class Build(val context: cbt.Context) extends BaseBuild{
  override def dependencies = (
    super.dependencies
    ++
    // FIXME: make the below less verbose
    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"),
      // the below tests pom inheritance with variable substitution being parts of strings
      MavenDependency("cc.factorie","factorie_2.11","1.2"),
      // test recursive substitution. see https://github.com/cvogt/cbt/issues/434
      MavenDependency("com.amazonaws", "aws-java-sdk-s3", "1.11.86")
      // the dependency below uses a maven version range. Currently not supported.
      // TODO: put in a proper error message for version range not supported
      //MavenDependency("com.github.nikita-volkov", "sext", "0.2.4")
      // currently breaks with can't find https://repo1.maven.org/maven2/org/apache/avro/avro-mapred/1.7.7/avro-mapred-1.7.7-hadoop2.pom.sha1
      // org.apache.spark:spark-sql_2.11:1.6.1
      // currently fails, let's see if because of a bug
      // io.spray:spray-http:1.3.3
    ) ++
    Resolver( new java.net.URL("http://maven.spikemark.net/roundeights") ).bind(
      // Check that lower case checksums work
      ScalaDependency("com.roundeights","hasher","1.2.0")
    ) ++
    Resolver(
      mavenCentral,
      bintray("tpolecat"),
      sonatypeSnapshots
    ).bind(
      "org.cvogt" %% "play-json-extensions" % "0.8.0",
      "ai.x" %% "lens" % "1.0.0"
    )
  )

  def printArgs = context.args.mkString(" ")
}