Skip to content

Commit e4fd067

Browse files
committed
replace pomExtra with sbt keys
1 parent b6d404e commit e4fd067

File tree

1 file changed

+10
-21
lines changed

1 file changed

+10
-21
lines changed

build.sbt

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -40,24 +40,13 @@ lazy val nameof = (projectMatrix in file("."))
4040

4141
Global / excludeLintKeys += ideSkipProject
4242

43-
ThisBuild / pomExtra := {
44-
<url>https://github.com/dwickern/scala-nameof</url>
45-
<licenses>
46-
<license>
47-
<name>MIT license</name>
48-
<url>http://www.opensource.org/licenses/mit-license.php</url>
49-
</license>
50-
</licenses>
51-
<scm>
52-
<connection>scm:git:github.com/dwickern/scala-nameof.git</connection>
53-
<developerConnection>scm:git:git@github.com:dwickern/scala-nameof.git</developerConnection>
54-
<url>github.com/dwickern/scala-nameof.git</url>
55-
</scm>
56-
<developers>
57-
<developer>
58-
<id>dwickern</id>
59-
<name>Derek Wickern</name>
60-
<url>https://github.com/dwickern</url>
61-
</developer>
62-
</developers>
63-
}
43+
ThisBuild / homepage := Some(url("https://github.com/dwickern/scala-nameof"))
44+
ThisBuild / licenses := Seq(License.MIT)
45+
ThisBuild / developers := List(
46+
Developer(
47+
id = "dwickern",
48+
name = "Derek Wickern",
49+
email = "dwickern@gmail.com",
50+
url = url("https://github.com/dwickern")
51+
)
52+
)

0 commit comments

Comments
 (0)