diff --git a/build.sbt b/build.sbt
index c408aba2..fb24f15a 100644
--- a/build.sbt
+++ b/build.sbt
@@ -313,43 +313,17 @@ lazy val framelessTypedDatasetREPL = Seq(
lazy val publishSettings = Seq(
Test / publishArtifact := false,
- pomExtra in Global := {
-
- git@github.com:typelevel/frameless.git
- scm:git:git@github.com:typelevel/frameless.git
-
-
-
- OlivierBlanvillain
- Olivier Blanvillain
- https://github.com/OlivierBlanvillain/
-
-
- adelbertc
- Adelbert Chang
- https://github.com/adelbertc/
-
-
- imarios
- Marios Iliofotou
- https://github.com/imarios/
-
-
- kanterov
- Gleb Kanterov
- https://github.com/kanterov/
-
-
- non
- Erik Osheim
- https://github.com/non/
-
-
- jeremyrsmith
- Jeremy Smith
- https://github.com/jeremyrsmith/
-
-
+ ThisBuild / developers ++= List(
+ "OlivierBlanvillain" -> "Olivier Blanvillain",
+ "adelbertc" -> "Adelbert Chang",
+ "imarios" -> "Marios Iliofotou",
+ "kanterov" -> "Gleb Kanterov",
+ "non" -> "Erik Osheim",
+ "jeremyrsmith" -> "Jeremy Smith",
+ "cchantep" -> "Cédric Chantepie",
+ "pomadchin" -> "Grigory Pomadchin"
+ ).map { case (username, fullName) =>
+ Developer(username, fullName, s"@$username", url(s"https://github.com/$username"))
}
)