Created
November 15, 2017 12:12
-
-
Save sguzman/961bf61b1e3b52a7021073f3cdccd0a7 to your computer and use it in GitHub Desktop.
a more complete sbt file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sbt.Keys._ | |
import scala.concurrent.duration._ | |
/** Name of project */ | |
name in Scope.Global := "" | |
/** Organization */ | |
organization in Scope.Global := "com.github.sguzman" | |
/** Project Version */ | |
version in Scope.Global := "1.0" | |
/** Scala version */ | |
scalaVersion in Scope.Global := "2.12.4" | |
/** Is this a snapshot version */ | |
isSnapshot in Scope.Global := false | |
/** Work offline wherever possible */ | |
offline in Scope.Global := true | |
/** Scalac parameters */ | |
scalacOptions in Scope.Global ++= Seq("-feature", "-unchecked", "-deprecation", "-encoding", "utf8") | |
/** Javac parameters */ | |
javacOptions in Scope.Global ++= Seq("-source", "1.8", "-target", "1.8") | |
/** Resolver */ | |
resolvers in Scope.Global ++= Seq( | |
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/", | |
"Search Maven" at "https://repo1.maven.org/maven2/" | |
) | |
/** Source Dependencies */ | |
libraryDependencies in Scope.Global ++= Seq( | |
) | |
/** Should tasks be executed in parallel */ | |
parallelExecution in Scope.Global := true | |
/** Poll interval for changed sources */ | |
pollInterval in Scope.Global := 500.millis | |
/** Make sure to fork on run */ | |
fork in run := true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment