Skip to content

Instantly share code, notes, and snippets.

@blast-hardcheese
Created April 5, 2013 00:58
Show Gist options
  • Save blast-hardcheese/5315797 to your computer and use it in GitHub Desktop.
Save blast-hardcheese/5315797 to your computer and use it in GitHub Desktop.
Writing lists to avoid multi-line changes in Git
diff --git a/project/Build.scala b/project/Build.scala
index eb28dac..cf9cb1a 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -10,6 +10,7 @@ object ApplicationBuild extends Build {
val appDependencies = Seq(
// Add your project dependencies here,
"org.xerial" % "sqlite-jdbc" % "3.7.2"
+ , "org.scalaquery" % "scalaquery_2.9.0-1" % "0.9.5"
)
val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA).settings(
@blast-hardcheese
Copy link
Author

Settled on prepending instead of appending in this case

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment