aboutsummaryrefslogtreecommitdiff
path: root/project/Settings.scala
blob: e878e8815a5ac344b027987cb8222353495b5995 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"
    )
  )
}