Skip to content

Instantly share code, notes, and snippets.

@amirkarimi
Last active May 17, 2017 14:43
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 amirkarimi/2aae7c2ded598d7fb28a3c4ec924c167 to your computer and use it in GitHub Desktop.
Save amirkarimi/2aae7c2ded598d7fb28a3c4ec924c167 to your computer and use it in GitHub Desktop.
01-apply-settings-using-sbt-triggered-plugin
lazy val commonSettings = Seq(
organization := "com.example",
version := "0.1.0-SNAPSHOT"
)
lazy val core = (project in file("core"))
.settings(
commonSettings,
// other settings
)
lazy val fooService = (project in file("fooService"))
.settings(
commonSettings,
// other settings
)
lazy val util = (project in file("util"))
.settings(
commonSettings,
// other settings
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment