bitcoin-atm

bitcoin atm for pyc inc.

git clone https://9o.is/git/bitcoin-atm.git

Build.scala

(1694B)


      1 import sbt._
      2 import sbt.Keys._
      3 
      4 object LiftProjectBuild extends Build {
      5 
      6   import BuildSettings._
      7   
      8   lazy val bitcoin = RootProject(file("../bitcoin"))
      9 
     10   lazy val root = Project("chimera", file("."))
     11     .settings(liftAppSettings: _*)
     12     .settings(libraryDependencies ++=
     13       Seq(
     14         "net.liftweb" %% "lift-webkit" % Ver.lift,
     15         "net.liftweb" %% "lift-mapper" % Ver.lift,
     16         "net.liftmodules" %% ("extras_"+Ver.lift_edition) % "0.4-SNAPSHOT",
     17         "com.typesafe.akka" %% "akka-actor" % "2.3.6",
     18         "net.databinder.dispatch" %% "dispatch-core" % "0.11.1",
     19         "net.databinder.dispatch" %% "dispatch-lift-json" % "0.11.0",
     20         "com.github.jodersky" %% "flow" % "2.0.3",
     21         "com.github.jodersky" % "flow-native" % "2.0.3",
     22         "com.coiney" %% "akka-mailer-smtp" % "0.2.0",
     23         "inc.pyc" %% "currency-lib" % "0.1",
     24         //"inc.pyc" %% "bitcoin" % "0.1-SNAPSHOT",
     25         "inc.pyc" %% "bill-acceptor-core" % "0.1-SNAPSHOT",
     26         "inc.pyc" %% "bill-acceptor-apex" % "0.1-SNAPSHOT",
     27         "com.github.seratch" %% "awscala" % "0.3.+",
     28         //"io.kamon" %% "kamon-core" % "0.3.2",
     29         //"io.kamon" %% "kamon-log-reporter" % "0.3.2",
     30         //"io.kamon" %% "kamon-system-metrics" % "0.3.2",
     31         //"io.kamon" %% "kamon-statsd" % "0.3.2",
     32         "org.eclipse.jetty" % "jetty-webapp" % Ver.jetty % "container",
     33         "com.h2database" % "h2" % "1.2.138",
     34         "ch.qos.logback" % "logback-classic" % "1.0.13" % "runtime",
     35         "com.typesafe.akka" %% "akka-slf4j" % "2.3.6",
     36         "com.typesafe.akka" %% "akka-testkit" % "2.3.6",
     37         "org.scalatest" %% "scalatest" % "1.9.2" % "test"
     38       )
     39     )
     40     .dependsOn(bitcoin)
     41 }