Skip to content
Snippets Groups Projects
Select Git revision
  • 813d39727f1899b147ccd513f9605be692b097a0
  • master default
2 results

build.sbt

Blame
  • user avatar
    Max Leuthäuser authored
    57343da0
    History
    build.sbt 425 B
    name := "SCROLLBoot"
    
    lazy val commonSettings = Seq(
      organization := "tu.dresden.de",
      version := "0.0.1",
      scalaVersion := "2.11.7",
      scalacOptions := Seq("-unchecked", "-deprecation", "-feature", "-encoding", "utf8")
    )
    
    lazy val main = (project in file(".")).settings(commonSettings: _*).
      settings(
        libraryDependencies ++= Seq(
          "com.github.max-leuthaeuser" % "scroll_2.11" % "latest.integration"
        )
      )