Skip to content

Commit 07f251c

Browse files
committed
Fix pom metadata
1 parent 37bd5ff commit 07f251c

File tree

1 file changed

+11
-37
lines changed

1 file changed

+11
-37
lines changed

build.sbt

Lines changed: 11 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -313,43 +313,17 @@ lazy val framelessTypedDatasetREPL = Seq(
313313

314314
lazy val publishSettings = Seq(
315315
Test / publishArtifact := false,
316-
pomExtra in Global := {
317-
<scm>
318-
<url>git@github.com:typelevel/frameless.git</url>
319-
<connection>scm:git:git@github.com:typelevel/frameless.git</connection>
320-
</scm>
321-
<developers>
322-
<developer>
323-
<id>OlivierBlanvillain</id>
324-
<name>Olivier Blanvillain</name>
325-
<url>https://github.com/OlivierBlanvillain/</url>
326-
</developer>
327-
<developer>
328-
<id>adelbertc</id>
329-
<name>Adelbert Chang</name>
330-
<url>https://github.com/adelbertc/</url>
331-
</developer>
332-
<developer>
333-
<id>imarios</id>
334-
<name>Marios Iliofotou</name>
335-
<url>https://github.com/imarios/</url>
336-
</developer>
337-
<developer>
338-
<id>kanterov</id>
339-
<name>Gleb Kanterov</name>
340-
<url>https://github.com/kanterov/</url>
341-
</developer>
342-
<developer>
343-
<id>non</id>
344-
<name>Erik Osheim</name>
345-
<url>https://github.com/non/</url>
346-
</developer>
347-
<developer>
348-
<id>jeremyrsmith</id>
349-
<name>Jeremy Smith</name>
350-
<url>https://github.com/jeremyrsmith/</url>
351-
</developer>
352-
</developers>
316+
ThisBuild / developers ++= List(
317+
"OlivierBlanvillain" -> "Olivier Blanvillain",
318+
"adelbertc" -> "Adelbert Chang",
319+
"imarios" -> "Marios Iliofotou",
320+
"kanterov" -> "Gleb Kanterov",
321+
"non" -> "Erik Osheim",
322+
"jeremyrsmith" -> "Jeremy Smith",
323+
"cchantep" -> "Cédric Chantepie",
324+
"pomadchin" -> "Grigory Pomadchin"
325+
).map { case (username, fullName) =>
326+
Developer(username, fullName, s"@$username", url(s"https://github.com/$username"))
353327
}
354328
)
355329

0 commit comments

Comments
 (0)