aboutsummaryrefslogblamecommitdiff
path: root/project/Settings.scala
blob: e878e8815a5ac344b027987cb8222353495b5995 (plain) (tree)
























                                                  
import sbt._
import Keys._

object Settings {
  val VERSION = "0.1-SNAPSHOT"

  lazy val basicSettings = seq(
    version       := VERSION,
    organization  := "com.despegar",
    scalaVersion  := "2.10.1",
    resolvers    ++= Dependencies.resolutionRepos,
    scalacOptions := Seq(
      "-encoding",
      "utf8",
      "-feature",
      "-unchecked",
      "-deprecation",
      "-target:jvm-1.6",
      "-language:postfixOps",
      "-language:implicitConversions",
      "-Xlog-reflective-calls"
    )
  )
}