lila/project/Dependencies.scala

64 lines
2.8 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/"
2013-09-18 09:30:40 -06:00
val typesafeS = "typesafe.com" at "http://repo.typesafe.com/typesafe/snapshots/"
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"
2014-06-01 15:22:17 -06:00
val sprayNightlies = "spray nightlies repo" at "http://nightlies.spray.io"
2013-05-09 14:07:34 -06:00
val localSonatype = "local sonatype repo" at home + "/local-repo/sonatype/snapshots"
val local = "local repo" at home + "/local-repo"
2013-12-05 12:40:11 -07:00
val roundeights = "RoundEights" at "http://maven.spikemark.net/roundeights"
2014-05-09 03:49:58 -06:00
val snowplow = "SnowPlow Repo" at "http://maven.snplow.com/releases/"
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(
local,
2013-09-18 09:30:40 -06:00
// localSonatype,
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,
2013-09-20 02:57:27 -06:00
// typesafeS,
2014-07-26 14:53:26 -06:00
prismic,
2014-06-01 15:22:17 -06:00
t2v, jgitMaven, sprayRepo, sprayNightlies, snowplow)
2013-03-14 12:16:36 -06:00
}
2014-06-01 15:22:17 -06:00
val scalaz = "org.scalaz" %% "scalaz-core" % "7.0.6"
val scalalib = "com.github.ornicar" %% "scalalib" % "5.0"
val config = "com.typesafe" % "config" % "1.2.1"
val apache = "org.apache.commons" % "commons-lang3" % "3.3.2"
2014-10-11 06:10:26 -06:00
val scalaTime = "com.github.nscala-time" %% "nscala-time" % "1.4.0"
val guava = "com.google.guava" % "guava" % "18.0"
// val findbugs = "com.google.code.findbugs" % "jsr305" % "2.0.3"
2014-02-09 12:43:15 -07:00
val csv = "com.github.tototoshi" %% "scala-csv" % "1.0.0"
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"
2014-10-11 06:10:26 -06:00
val jodaTime = "joda-time" % "joda-time" % "2.5"
2014-09-16 14:43:43 -06:00
val elastic4s = "com.sksamuel.elastic4s" %% "elastic4s" % "1.3.2"
2014-10-11 06:10:26 -06:00
val RM = "org.reactivemongo" %% "reactivemongo" % "0.10.5.0.akka23"
val PRM = "org.reactivemongo" %% "play2-reactivemongo" % "0.10.5.0.akka23"
2014-08-07 04:13:27 -06:00
val maxmind = "com.sanoma.cda" %% "maxmind-geoip2-scala" % "1.2.2-THIB"
2014-10-11 06:10:26 -06:00
val prismic = "io.prismic" %% "scala-kit" % "1.2.4"
2014-04-29 03:33:50 -06:00
2013-05-13 20:22:16 -06:00
object play {
2014-10-11 06:10:26 -06:00
val version = "2.3.5"
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 {
2014-06-01 15:22:17 -06:00
val version = "1.3.1"
2013-05-13 20:22:16 -06:00
val caching = "io.spray" % "spray-caching" % version
val util = "io.spray" % "spray-util" % version
2013-03-14 12:16:36 -06:00
}
}