diff --git a/.scalafmt.conf b/.scalafmt.conf index 3b90e85..ccf84b3 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = 3.0.6 +version = 3.0.8 maxColumn = 150 continuationIndent.callSite = 2 continuationIndent.defnSite = 4 diff --git a/build.sbt b/build.sbt index 2300abc..16ac0c8 100644 --- a/build.sbt +++ b/build.sbt @@ -2,17 +2,17 @@ import Dependencies._ inThisBuild( Seq( - scalaVersion := "2.13.7", - scalafmtOnCompile := true, + scalaVersion := "2.13.7", + scalafmtOnCompile := true, scalacOptions ++= Seq( "-deprecation", "-encoding", "UTF-8" ), crossScalaVersions := Seq(scalaVersion.value, "2.12.15"), - organization := "com.github.zhongl", - homepage := Some(url("https://github.com/hanabix/akka-stream-netty")), - licenses := List( + organization := "com.github.zhongl", + homepage := Some(url("https://github.com/hanabix/akka-stream-netty")), + licenses := List( "Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0") ), developers := List( diff --git a/project/Dependencies.scala b/project/Dependencies.scala index e992f27..9b0dc0b 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -25,7 +25,7 @@ object Dependencies { val common = Seq( "org.scalatest" %% "scalatest" % "3.2.10" % Test, - "org.scalamock" %% "scalamock" % "5.1.0" % Test + "org.scalamock" %% "scalamock" % "5.1.0" % Test ) val akka = Seq(