Skip to content

Commit

Permalink
Fix scmInfo and developers in build.sbt.
Browse files Browse the repository at this point in the history
  • Loading branch information
analytically committed Feb 21, 2018
1 parent 3249fc1 commit 05664d1
Showing 1 changed file with 20 additions and 17 deletions.
37 changes: 20 additions & 17 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import com.typesafe.sbt.osgi.SbtOsgi
import sbt._

enablePlugins(SbtOsgi)

Expand Down Expand Up @@ -39,20 +40,22 @@ publishTo := {
}
publishArtifact in Test := false
pomIncludeRepository := (_ => false)
pomExtra :=
<scm>
<url>https://github.com/lightbend/scala-logging</url>
<connection>scm:git:git://github.com/lightbend/scala-logging.git</connection>
</scm>
<developers>
<developer>
<id>hseeberger</id>
<name>Heiko Seeberger</name>
<url>http://heikoseeberger.de</url>
</developer>
<developer>
<id>analytically</id>
<name>Mathias Bogaert</name>
<url>http://twitter.com/analytically</url>
</developer>
</developers>

scmInfo := Some(
ScmInfo(url("https://github.com/lightbend/scala-logging"), "scm:git:[email protected]:lightbend/scala-logging.git")
)

developers := List(
Developer(
id = "hseeberger",
name = "Heiko Seeberger",
email = "",
url = url("http://heikoseeberger.de")
),
Developer(
id = "analytically",
name = "Mathias Bogaert",
email = "",
url = url("http://twitter.com/analytically")
)
)

0 comments on commit 05664d1

Please sign in to comment.