Skip to content

Commit 3249fc1

Browse files
committed
Fix homepage and scm urls in build.sbt. Fix scalariform deprecation.
1 parent 88c67a5 commit 3249fc1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ enablePlugins(SbtOsgi)
55
organization := "com.typesafe.scala-logging"
66
name := "scala-logging"
77
licenses := Seq("Apache 2.0 License" -> url("http://www.apache.org/licenses/LICENSE-2.0.html"))
8-
homepage := Some(url("https://github.com/typesafehub/scala-logging"))
8+
homepage := Some(url("https://github.com/lightbend/scala-logging"))
99
incOptions := incOptions.value.withLogRecompileOnMacro(false)
1010
scalaVersion := Version.scala
1111
crossScalaVersions := Version.crossScala
@@ -41,8 +41,8 @@ publishArtifact in Test := false
4141
pomIncludeRepository := (_ => false)
4242
pomExtra :=
4343
<scm>
44-
<url>https://github.com/typesafehub/scala-logging</url>
45-
<connection>scm:git:git://github.com/typesafehub/scala-logging.git</connection>
44+
<url>https://github.com/lightbend/scala-logging</url>
45+
<connection>scm:git:git://github.com/lightbend/scala-logging.git</connection>
4646
</scm>
4747
<developers>
4848
<developer>

scalariform.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import com.typesafe.sbt.SbtScalariform.ScalariformKeys
2-
import scalariform.formatter.preferences.{AlignSingleLineCaseStatements, DoubleIndentClassDeclaration}
2+
import scalariform.formatter.preferences.{AlignSingleLineCaseStatements, DoubleIndentConstructorArguments}
33

44
ScalariformKeys.preferences := ScalariformKeys.preferences.value
55
.setPreference(AlignSingleLineCaseStatements, true)
66
.setPreference(AlignSingleLineCaseStatements.MaxArrowIndent, 100)
7-
.setPreference(DoubleIndentClassDeclaration, true)
7+
.setPreference(DoubleIndentConstructorArguments, true)

0 commit comments

Comments
 (0)