aboutsummaryrefslogtreecommitdiff
path: root/project/Settings.scala
diff options
context:
space:
mode:
Diffstat (limited to 'project/Settings.scala')
-rw-r--r--project/Settings.scala25
1 files changed, 25 insertions, 0 deletions
diff --git a/project/Settings.scala b/project/Settings.scala
new file mode 100644
index 00000000..e878e881
--- /dev/null
+++ b/project/Settings.scala
@@ -0,0 +1,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"
+ )
+ )
+}
+