Skip to content

Commit 05664d1

Browse files
committed
Fix scmInfo and developers in build.sbt.
1 parent 3249fc1 commit 05664d1

File tree

1 file changed

+20
-17
lines changed

1 file changed

+20
-17
lines changed

build.sbt

+20-17
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import com.typesafe.sbt.osgi.SbtOsgi
2+
import sbt._
23

34
enablePlugins(SbtOsgi)
45

@@ -39,20 +40,22 @@ publishTo := {
3940
}
4041
publishArtifact in Test := false
4142
pomIncludeRepository := (_ => false)
42-
pomExtra :=
43-
<scm>
44-
<url>https://github.com/lightbend/scala-logging</url>
45-
<connection>scm:git:git://github.com/lightbend/scala-logging.git</connection>
46-
</scm>
47-
<developers>
48-
<developer>
49-
<id>hseeberger</id>
50-
<name>Heiko Seeberger</name>
51-
<url>http://heikoseeberger.de</url>
52-
</developer>
53-
<developer>
54-
<id>analytically</id>
55-
<name>Mathias Bogaert</name>
56-
<url>http://twitter.com/analytically</url>
57-
</developer>
58-
</developers>
43+
44+
scmInfo := Some(
45+
ScmInfo(url("https://github.com/lightbend/scala-logging"), "scm:git:[email protected]:lightbend/scala-logging.git")
46+
)
47+
48+
developers := List(
49+
Developer(
50+
id = "hseeberger",
51+
name = "Heiko Seeberger",
52+
email = "",
53+
url = url("http://heikoseeberger.de")
54+
),
55+
Developer(
56+
id = "analytically",
57+
name = "Mathias Bogaert",
58+
email = "",
59+
url = url("http://twitter.com/analytically")
60+
)
61+
)

0 commit comments

Comments
 (0)