aboutsummaryrefslogtreecommitdiff
path: root/tools/gui/build/build.scala
blob: f9e800b6ac6cc59c416600abd70af08f5310b604 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import cbt._

class Build(val context: Context) extends BaseBuild {

  override def dependencies = {
    super.dependencies ++ Resolver(mavenCentral).bind(
      MavenDependency("org.eclipse.jetty", "jetty-server", "9.3.12.v20160915"),
      ScalaDependency("org.scalaj", "scalaj-http", "2.3.0"),
      MavenDependency("com.atlassian.commonmark", "commonmark", "0.7.1")
    )
  }

}