aboutsummaryrefslogtreecommitdiff
path: root/stage2/Scaffold.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-05-03 10:50:10 +0300
committerChristopher Vogt <oss.nsp@cvogt.org>2016-05-03 10:53:02 +0300
commit91d1963e024835fc6abb0e227dced74451aa1f74 (patch)
tree2d9f26f56508aea7471faba7f94cc63c3df5963d /stage2/Scaffold.scala
parent6b67fd1eab71f3619d0f1a5d71a3fde3d81ef259 (diff)
downloadcbt-91d1963e024835fc6abb0e227dced74451aa1f74.tar.gz
cbt-91d1963e024835fc6abb0e227dced74451aa1f74.tar.bz2
cbt-91d1963e024835fc6abb0e227dced74451aa1f74.zip
encourage whitespace in parenthesis (more readable ;))
Diffstat (limited to 'stage2/Scaffold.scala')
-rw-r--r--stage2/Scaffold.scala12
1 files changed, 6 insertions, 6 deletions
diff --git a/stage2/Scaffold.scala b/stage2/Scaffold.scala
index e9ce92f..7ad0146 100644
--- a/stage2/Scaffold.scala
+++ b/stage2/Scaffold.scala
@@ -33,16 +33,16 @@ import java.net.URL
import java.io.File
import scala.collection.immutable.Seq
-class Build(context: Context) extends BasicBuild(context){
+class Build( context: Context ) extends BasicBuild( context ){
override def dependencies = { // don't forget super.dependencies here
super.dependencies ++ Resolver( mavenCentral ).bind(
/*
// Scala dependency automatically adding Scala major version to artifact id
- ScalaDependency("com.lihaoyi", "ammonite-ops", "0.5.5")
+ ScalaDependency( "com.lihaoyi", "ammonite-ops", "0.5.5" )
// SBT-style Scala dependency
"com.lihaoyi" %% "ammonite-ops" % "0.5.5"
// Java dependency directly corresponding to maven artifact id
- MavenDependency("com.lihaoyi", "ammonite-ops_2.11", "0.5.5")
+ MavenDependency( "com.lihaoyi", "ammonite-ops_2.11", "0.5.5" )
// SBT-style Java dependency
"com.lihaoyi" % "ammonite-ops_2.11" % "0.5.5"
*/
@@ -61,16 +61,16 @@ import java.net.URL
import java.io.File
import scala.collection.immutable.Seq
-class Build(context: Context) extends BuildBuild(context){
+class Build( context: Context ) extends BuildBuild( context ){
override def dependencies = { // don't forget super.dependencies here
super.dependencies ++ Resolver( mavenCentral ).bind(
/*
// Scala dependency automatically adding Scala major version to artifact id
- ScalaDependency("com.lihaoyi", "ammonite-ops", "0.5.5")
+ ScalaDependency( "com.lihaoyi", "ammonite-ops", "0.5.5" )
// SBT-style Scala dependency
"com.lihaoyi" %% "ammonite-ops" % "0.5.5"
// Java dependency directly corresponding to maven artifact id
- MavenDependency("com.lihaoyi", "ammonite-ops_2.11", "0.5.5")
+ MavenDependency( "com.lihaoyi", "ammonite-ops_2.11", "0.5.5" )
// SBT-style Java dependency
"com.lihaoyi" % "ammonite-ops_2.11" % "0.5.5"
*/