Skip to content

Commit

Permalink
Fix homepage and scm urls in build.sbt. Fix scalariform deprecation.
Browse files Browse the repository at this point in the history
  • Loading branch information
analytically committed Feb 21, 2018
1 parent 88c67a5 commit 3249fc1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ enablePlugins(SbtOsgi)
organization := "com.typesafe.scala-logging"
name := "scala-logging"
licenses := Seq("Apache 2.0 License" -> url("http://www.apache.org/licenses/LICENSE-2.0.html"))
homepage := Some(url("https://github.com/typesafehub/scala-logging"))
homepage := Some(url("https://github.com/lightbend/scala-logging"))
incOptions := incOptions.value.withLogRecompileOnMacro(false)
scalaVersion := Version.scala
crossScalaVersions := Version.crossScala
Expand Down Expand Up @@ -41,8 +41,8 @@ publishArtifact in Test := false
pomIncludeRepository := (_ => false)
pomExtra :=
<scm>
<url>https://github.com/typesafehub/scala-logging</url>
<connection>scm:git:git://github.com/typesafehub/scala-logging.git</connection>
<url>https://github.com/lightbend/scala-logging</url>
<connection>scm:git:git://github.com/lightbend/scala-logging.git</connection>
</scm>
<developers>
<developer>
Expand Down
4 changes: 2 additions & 2 deletions scalariform.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import com.typesafe.sbt.SbtScalariform.ScalariformKeys
import scalariform.formatter.preferences.{AlignSingleLineCaseStatements, DoubleIndentClassDeclaration}
import scalariform.formatter.preferences.{AlignSingleLineCaseStatements, DoubleIndentConstructorArguments}

ScalariformKeys.preferences := ScalariformKeys.preferences.value
.setPreference(AlignSingleLineCaseStatements, true)
.setPreference(AlignSingleLineCaseStatements.MaxArrowIndent, 100)
.setPreference(DoubleIndentClassDeclaration, true)
.setPreference(DoubleIndentConstructorArguments, true)

0 comments on commit 3249fc1

Please sign in to comment.