lila/project/Dependencies.scala

54 lines
2.2 KiB
Scala
Raw Normal View History

2014-02-09 12:43:15 -07:00
import sbt._, Keys._
2013-03-14 12:16:36 -06:00
object Dependencies {
2013-05-09 14:07:34 -06:00
private val home = "file://" + Path.userHome.absolutePath
2013-03-23 17:10:46 -06:00
2013-03-14 12:16:36 -06:00
object Resolvers {
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"
2013-03-14 12:16:36 -06:00
val t2v = "t2v.jp repo" at "http://www.t2v.jp/maven-repo/"
val jgitMaven = "jgit-maven" at "http://download.eclipse.org/jgit/maven"
val awesomepom = "awesomepom" at "https://raw.github.com/jibs/maven-repo-scala/master"
val sprayRepo = "spray repo" at "http://repo.spray.io"
2013-12-05 12:40:11 -07:00
val roundeights = "RoundEights" at "http://maven.spikemark.net/roundeights"
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(
2014-06-01 15:22:17 -06:00
sonatypeS,
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,
2013-12-05 12:40:11 -07:00
roundeights,
2014-07-26 14:53:26 -06:00
prismic,
2015-03-19 08:50:05 -06:00
t2v, jgitMaven, sprayRepo)
2013-03-14 12:16:36 -06:00
}
2015-07-14 04:00:09 -06:00
val scalaz = "org.scalaz" %% "scalaz-core" % "7.1.3"
2015-03-17 05:31:25 -06:00
val scalalib = "com.github.ornicar" %% "scalalib" % "5.3"
val config = "com.typesafe" % "config" % "1.3.0"
2015-05-19 22:13:10 -06:00
val apache = "org.apache.commons" % "commons-lang3" % "3.4"
2014-10-11 06:10:26 -06:00
val guava = "com.google.guava" % "guava" % "18.0"
2014-10-11 12:11:37 -06:00
val findbugs = "com.google.code.findbugs" % "jsr305" % "2.0.3"
2013-12-05 12:40:11 -07:00
val hasher = "com.roundeights" %% "hasher" % "1.0.0"
2014-02-09 12:43:15 -07:00
val jgit = "org.eclipse.jgit" % "org.eclipse.jgit" % "3.2.0.201312181205-r"
2015-07-14 04:00:09 -06:00
val jodaTime = "joda-time" % "joda-time" % "2.8.1"
val elastic4s = "com.sksamuel.elastic4s" %% "elastic4s-core" % "1.6.4"
2015-07-13 09:32:14 -06:00
val RM = "org.reactivemongo" %% "reactivemongo" % "0.11.2"
val PRM = "org.reactivemongo" %% "play2-reactivemongo" % "0.11.2.play23"
2015-01-03 08:38:49 -07:00
val maxmind = "com.sanoma.cda" %% "maxmind-geoip2-scala" % "1.2.3-THIB"
2015-07-14 04:00:09 -06:00
val prismic = "io.prismic" %% "scala-kit" % "1.3.4"
2014-04-29 03:33:50 -06:00
2013-05-13 20:22:16 -06:00
object play {
2015-05-19 12:51:20 -06:00
val version = "2.3.9"
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
}
2013-03-14 12:16:36 -06:00
object spray {
2015-05-19 12:51:20 -06:00
val version = "1.3.3"
2015-01-11 06:40:15 -07:00
val caching = "io.spray" %% "spray-caching" % version
val util = "io.spray" %% "spray-util" % version
2013-03-14 12:16:36 -06:00
}
}