diff --git a/build.sbt b/build.sbt index 5a45764..f0da1ac 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,5 @@ import com.typesafe.sbt.osgi.SbtOsgi +import sbt._ enablePlugins(SbtOsgi) @@ -39,20 +40,22 @@ publishTo := { } publishArtifact in Test := false pomIncludeRepository := (_ => false) -pomExtra := - - https://github.com/lightbend/scala-logging - scm:git:git://github.com/lightbend/scala-logging.git - - - - hseeberger - Heiko Seeberger - http://heikoseeberger.de - - - analytically - Mathias Bogaert - http://twitter.com/analytically - - \ No newline at end of file + +scmInfo := Some( + ScmInfo(url("https://github.com/lightbend/scala-logging"), "scm:git:git@github.com: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") + ) +) \ No newline at end of file