Created
April 5, 2013 00:58
-
-
Save blast-hardcheese/5315797 to your computer and use it in GitHub Desktop.
Writing lists to avoid multi-line changes in Git
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
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( |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Settled on prepending instead of appending in this case