Skip to content

Commit 1b896f9

Browse files
committed
Format build definition files
1 parent 425f715 commit 1b896f9

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ jdk:
77
- oraclejdk8
88
cache:
99
directories:
10-
- $HOME/.ivy2
11-
- $HOME/.sbt
10+
- $HOME/.ivy2
11+
- $HOME/.sbt
1212
script: ./.ci_scripts/validate.sh

build.sbt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ def scalacOptionsVersion(scalaVersion: String) = {
3131
"-Xsource:2.12" // See https://github.com/scala/scala/releases/tag/v2.11.11
3232
)
3333
val v212Options = Seq(
34-
"-Ywarn-extra-implicit", // Warn when more than one implicit parameter section is defined.
34+
"-Ywarn-extra-implicit" // Warn when more than one implicit parameter section is defined.
3535
)
36-
36+
3737
CrossVersion.partialVersion(scalaVersion) match {
3838
case Some((2L, 11L)) => defaultOptions ++ v211Options
39-
case _ => defaultOptions ++ v212Options
39+
case _ => defaultOptions ++ v212Options
4040
}
4141
}
4242

@@ -81,7 +81,7 @@ lazy val core = (project in file("core"))
8181
name := "query-core",
8282
libraryDependencies ++= Seq(
8383
Dependencies.acolyte % Test,
84-
Dependencies.anorm % Test,
84+
Dependencies.anorm % Test,
8585
Dependencies.cats,
8686
Dependencies.specs2 % Test
8787
)
@@ -94,12 +94,12 @@ lazy val playSqlModule = (project in file("modules/play-sql"))
9494
name := "query-play-sql",
9595
libraryDependencies ++= Seq(
9696
jdbc,
97-
evolutions % Test,
98-
logback % Test,
99-
Dependencies.acolyte % Test,
97+
evolutions % Test,
98+
logback % Test,
99+
Dependencies.acolyte % Test,
100100
Dependencies.acolytePlay % Test,
101-
Dependencies.anorm % Test,
102-
Dependencies.h2 % Test,
101+
Dependencies.anorm % Test,
102+
Dependencies.h2 % Test,
103103
Dependencies.scalaLogging,
104104
Dependencies.specs2 % Test
105105
)

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ object Dependencies {
1010
lazy val cats = "org.typelevel" %% "cats-core" % "1.4.0"
1111

1212
lazy val h2 = "com.h2database" % "h2" % "1.4.197"
13-
13+
1414
lazy val postgres = "org.postgresql" % "postgresql" % "42.2.5"
1515

1616
lazy val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.0"

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.5.1")
1+
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.5.1")
22
addSbtPlugin("org.wartremover" % "sbt-wartremover" % "2.3.7")
33

44
// The Play plugin, used for the play-sql module

0 commit comments

Comments
 (0)