Skip to content

Commit

Permalink
remove pomExtras in favour of sbt keys (#385)
Browse files Browse the repository at this point in the history
* remove pomExtras in favour of sbt keys
* formatting + usr /usr/bin/env in scalafmt script
  • Loading branch information
MasseGuillaume authored and densh committed Nov 16, 2016
1 parent b851b69 commit 58f9dfa
Showing 1 changed file with 15 additions and 20 deletions.
35 changes: 15 additions & 20 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -56,31 +56,26 @@ lazy val publishSettings = Seq(
pomIncludeRepository := { x =>
false
},
homepage := Some(url("http://www.scala-native.org")),
startYear := Some(2015),
licenses := Seq(
"BSD-like" -> url("http://www.scala-lang.org/downloads/license.html")),
developers += Developer(
email = "denys.shabalin@epfl.ch",
id = "densh",
name = "Denys Shabalin",
url = url("http://den.sh")
),
scmInfo := Some(
ScmInfo(
browseUrl = url("https://github.com/scala-native/scala-native"),
connection = "scm:git:git@github.com:scala-native/scala-native.git"
)),
pomExtra := (
<url>https://github.com/scala-native/scala-native</url>
<inceptionYear>2015</inceptionYear>
<licenses>
<license>
<name>BSD-like</name>
<url>http://www.scala-lang.org/downloads/license.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:scala-native/scala-native.git</url>
<connection>scm:git@github.com:scala-native/scala-native.git</connection>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/scala-native/scala-native/issues</url>
</issueManagement>
<developers>
<developer>
<id>densh</id>
<name>Denys Shabalin</name>
<url>http://den.sh</url>
</developer>
</developers>
)
)

Expand Down

0 comments on commit 58f9dfa

Please sign in to comment.