lila/project/Dependencies.scala

70 lines
3.4 KiB
Scala
Raw Normal View History

2015-07-14 06:04:51 -06:00
import play.sbt.PlayImport._
2014-02-09 12:43:15 -07:00
import sbt._, Keys._
2013-03-14 12:16:36 -06:00
object Dependencies {
object Resolvers {
2019-12-12 22:03:38 -07:00
val sonatype = Resolver.sonatypeRepo("releases")
val sonatypeS = Resolver.sonatypeRepo("snapshots")
val lilaMaven = "lila-maven" at "https://raw.githubusercontent.com/ornicar/lila-maven/master"
2013-03-14 12:16:36 -06:00
val commons = Seq(sonatype, lilaMaven, sonatypeS)
2013-03-14 12:16:36 -06:00
}
2020-05-05 22:11:15 -06:00
val scalaz = "org.scalaz" %% "scalaz-core" % "7.2.30"
val scalalib = "com.github.ornicar" %% "scalalib" % "6.8"
val hasher = "com.roundeights" %% "hasher" % "1.2.1"
val jodaTime = "joda-time" % "joda-time" % "2.10.6"
val chess = "org.lichess" %% "scalachess" % "9.2.1"
val compression = "org.lichess" %% "compression" % "1.5"
val maxmind = "com.sanoma.cda" %% "maxmind-geoip2-scala" % "1.3.1-THIB"
val prismic = "io.prismic" %% "scala-kit" % "1.2.18-THIB213"
val scrimage = "com.sksamuel.scrimage" %% "scrimage-core" % "2.1.8-SNAPSHOT"
val scaffeine = "com.github.blemale" %% "scaffeine" % "4.0.0" % "compile"
val googleOAuth = "com.google.auth" % "google-auth-library-oauth2-http" % "0.20.0"
val scalaUri = "io.lemonlabs" %% "scala-uri" % "2.2.0"
val scalatags = "com.lihaoyi" %% "scalatags" % "0.8.5"
val lettuce = "io.lettuce" % "lettuce-core" % "5.3.0.RELEASE"
val epoll = "io.netty" % "netty-transport-native-epoll" % "4.1.44.Final" classifier "linux-x86_64"
val autoconfig = "io.methvin.play" %% "autoconfig-macros" % "0.3.2" % "provided"
val scalatest = "org.scalatest" %% "scalatest" % "3.1.0" % Test
val akkatestkit = "com.typesafe.akka" %% "akka-testkit" % "2.6.1" % Test
2014-04-29 03:33:50 -06:00
object flexmark {
val version = "0.50.50"
val bundle =
("com.vladsch.flexmark" % "flexmark" % version) ::
List("formatter", "ext-tables", "ext-autolink", "ext-gfm-strikethrough").map { ext =>
"com.vladsch.flexmark" % s"flexmark-$ext" % version
}
}
2019-11-30 15:45:44 -07:00
object macwire {
2020-05-05 22:40:02 -06:00
val version = "2.3.4"
2019-12-12 22:03:38 -07:00
val macros = "com.softwaremill.macwire" %% "macros" % version % "provided"
2020-05-05 22:11:15 -06:00
val util = "com.softwaremill.macwire" %% "util" % version % "provided"
2019-11-30 15:45:44 -07:00
}
object reactivemongo {
2020-05-05 22:40:02 -06:00
val version = "0.20.10"
2020-05-05 22:11:15 -06:00
val driver = "org.reactivemongo" %% "reactivemongo" % version
val stream = "org.reactivemongo" %% "reactivemongo-akkastream" % version
val epoll = "org.reactivemongo" % "reactivemongo-shaded-native" % s"$version-linux-x86-64"
2019-12-31 10:45:06 -07:00
def bundle = Seq(driver, stream)
}
2013-05-13 20:22:16 -06:00
object play {
2020-02-05 15:31:41 -07:00
val version = "2.8.1"
2020-05-05 22:11:15 -06:00
val api = "com.typesafe.play" %% "play" % version
val json = "com.typesafe.play" %% "play-json" % "2.8.1"
2013-05-13 20:22:16 -06:00
}
object kamon {
2020-05-05 22:40:02 -06:00
val version = "2.1.0"
val core = "io.kamon" %% "kamon-core" % version
val influxdb = "io.kamon" %% "kamon-influxdb" % version
val metrics = "io.kamon" %% "kamon-system-metrics" % version
val prometheus = "io.kamon" %% "kamon-prometheus" % version
}
2013-03-14 12:16:36 -06:00
}