Skip to content

Instantly share code, notes, and snippets.

@WizzieP
Created May 20, 2016 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WizzieP/ed7eeaf58dc52519f899e091133260ee to your computer and use it in GitHub Desktop.
Save WizzieP/ed7eeaf58dc52519f899e091133260ee to your computer and use it in GitHub Desktop.
lazy val commonSettings = Seq(
organization := "me.asoltysik",
version := "0.1.0",
scalaVersion := "2.11.8"
)
lazy val evaluator = project.
settings(commonSettings: _*).
settings(
name := "evaluator"
)
lazy val calculator = project.dependsOn(evaluator).
settings(commonSettings: _*).
settings(
name := "calculator"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment