lila/project/Dependencies.scala

76 lines
3.2 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 {
2013-03-14 12:16:36 -06:00
val typesafe = "typesafe.com" at "http://repo.typesafe.com/typesafe/releases/"
2014-06-12 10:26:20 -06:00
val sonatype = "sonatype" at "https://oss.sonatype.org/content/repositories/releases"
val sonatypeS = "sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
val awesomepom = "awesomepom" at "https://raw.githubusercontent.com/jibs/maven-repo-scala/master"
val lilaMaven = "lila-maven" at "https://raw.githubusercontent.com/ornicar/lila-maven/master"
2014-05-31 11:01:43 -06:00
val prismic = "Prismic.io kits" at "https://s3.amazonaws.com/prismic-maven-kits/repository/maven/"
2013-03-14 12:16:36 -06:00
2013-05-04 09:38:37 -06:00
val commons = Seq(
sonatypeS,
lilaMaven,
2013-05-04 12:00:55 -06:00
sonatype,
2014-09-25 12:53:14 -06:00
awesomepom,
2014-02-09 12:43:15 -07:00
typesafe,
2017-08-23 17:39:19 -06:00
prismic
)
2013-03-14 12:16:36 -06:00
}
2017-10-26 01:27:41 -06:00
val scalaz = "org.scalaz" %% "scalaz-core" % "7.2.16"
2019-09-01 12:15:48 -06:00
val scalalib = "com.github.ornicar" %% "scalalib" % "6.7"
2017-08-23 18:43:12 -06:00
val typesafeConfig = "com.typesafe" % "config" % "1.3.1"
2016-01-03 21:07:44 -07:00
val findbugs = "com.google.code.findbugs" % "jsr305" % "3.0.1"
2016-01-03 20:59:32 -07:00
val hasher = "com.roundeights" %% "hasher" % "1.2.0"
2019-09-01 12:15:48 -06:00
val jodaTime = "joda-time" % "joda-time" % "2.10.3"
val chess = "org.lichess" %% "scalachess" % "8.6.24"
2018-03-13 15:36:32 -06:00
val compression = "org.lichess" %% "compression" % "1.4"
val maxmind = "com.sanoma.cda" %% "maxmind-geoip2-scala" % "1.2.3-THIB"
val prismic = "io.prismic" %% "scala-kit" % "1.2.13-THIB211"
2019-05-21 10:51:49 -06:00
val java8compat = "org.scala-lang.modules" %% "scala-java8-compat" % "0.9.0"
val semver = "com.gilt" %% "gfc-semver" % "0.0.5"
val scrimage = "com.sksamuel.scrimage" %% "scrimage-core" % "2.1.8"
2017-08-23 18:43:12 -06:00
val scalaConfigs = "com.github.kxbmap" %% "configs" % "0.4.4"
2019-05-18 00:55:58 -06:00
val scaffeine = "com.github.blemale" %% "scaffeine" % "2.6.0" % "compile"
val netty = "io.netty" % "netty" % "3.10.6.Final"
2017-03-31 00:27:58 -06:00
val guava = "com.google.guava" % "guava" % "21.0"
2018-03-06 13:57:11 -07:00
val specs2 = "org.specs2" %% "specs2-core" % "4.0.2" % "test"
val specs2Scalaz = "org.specs2" %% "specs2-scalaz" % "4.0.2" % "test"
val scalaUri = "io.lemonlabs" %% "scala-uri" % "1.2.0"
val scalatags = "com.lihaoyi" %% "scalatags" % "0.6.7"
2019-08-28 12:58:03 -06:00
val lettuce = "io.lettuce" % "lettuce-core" % "5.1.8.RELEASE"
2019-09-01 12:15:48 -06:00
val epoll = "io.netty" % "netty-transport-native-epoll" % "4.1.39.Final" classifier "linux-x86_64"
2019-08-29 03:53:09 -06:00
val markdown = "com.vladsch.flexmark" % "flexmark-all" % "0.50.30"
2014-04-29 03:33:50 -06:00
object reactivemongo {
val version = "0.12.4"
2017-04-12 05:57:25 -06:00
val driver = ("org.reactivemongo" %% "reactivemongo" % version)
.exclude("com.typesafe.akka", "*") // provided by Play
.exclude("com.typesafe.play", "*")
2017-03-30 12:26:53 -06:00
val iteratees = ("org.reactivemongo" %% "reactivemongo-iteratees" % version)
.exclude("com.typesafe.akka", "*") // provided by Play
.exclude("com.typesafe.play", "*")
}
2013-05-13 20:22:16 -06:00
object play {
2017-10-26 01:27:41 -06:00
val version = "2.4.11"
2013-09-15 09:36:46 -06:00
val api = "com.typesafe.play" %% "play" % version
val test = "com.typesafe.play" %% "play-test" % version
2013-05-13 20:22:16 -06:00
}
2015-10-18 16:44:49 -06:00
object akka {
2017-10-13 09:12:54 -06:00
val version = "2.4.20"
2015-10-18 16:44:49 -06:00
val actor = "com.typesafe.akka" %% "akka-actor" % version
val slf4j = "com.typesafe.akka" %% "akka-slf4j" % version
2015-10-18 16:44:49 -06:00
}
object kamon {
val version = "0.6.4.2-LILA"
val core = "io.kamon" %% "kamon-core" % version
val influxdb = "io.kamon" %% "kamon-influxdb" % version
}
2013-03-14 12:16:36 -06:00
}