aboutsummaryrefslogtreecommitdiff
path: root/src/main/g8/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/g8/build.sbt')
-rw-r--r--src/main/g8/build.sbt10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/g8/build.sbt b/src/main/g8/build.sbt
new file mode 100644
index 0000000..8aa4eda
--- /dev/null
+++ b/src/main/g8/build.sbt
@@ -0,0 +1,10 @@
+name := "$project_name$"
+
+crossScalaVersions in ThisBuild := List("2.12.1")
+scalaVersion in ThisBuild := (crossScalaVersions in ThisBuild).value.head
+scalacOptions in ThisBuild ++= Seq(
+ "-deprecation",
+ "-feature",
+ "-Xfatal-warnings",
+ "-Xlint"
+)