From 96c035e5d9296df95bc96bc67881e3e1f4d9e505 Mon Sep 17 00:00:00 2001 From: Michel Davit Date: Fri, 3 Sep 2021 16:05:19 +0200 Subject: [PATCH] Add scm and developers --- build.sbt | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 6372ef6..cf34265 100644 --- a/build.sbt +++ b/build.sbt @@ -29,15 +29,32 @@ lazy val `sbt-avro`: Project = project .enablePlugins(SbtPlugin) .settings( organization := "com.github.sbt", - description := "Sbt plugin for compiling Avro sources", + organizationName := "sbt", + organizationHomepage := Some(url("https://www.scala-sbt.org/")), homepage := Some(url("https://github.com/sbt/sbt-avro")), + licenses += ("BSD 3-Clause", url("https://github.com/sbt/sbt-avro/blob/master/LICENSE")), + description := "Sbt plugin for compiling Avro sources", + scmInfo := Some(ScmInfo(url("https://github.com/sbt/sbt-avro"), "scm:git:git@github.com:sbt/sbt-avro.git")), + developers := List( + Developer( + id = "nevillelyh", + name = "Neville Li", + email = "@nevillelyh", + url = url("https://www.lyh.me/") + ), + Developer( + id = "RustedBones", + name = "Michel Davit", + email = "michel@davit.fr", + url = url("https://michel.davit.fr") + ) + ), pluginCrossBuild / sbtVersion := "1.2.8", Compile / scalacOptions ++= Seq("-deprecation"), libraryDependencies ++= Seq( Dependencies.Provided.AvroCompiler, Dependencies.Test.Spec2 ), - licenses += ("BSD 3-Clause", url("https://github.com/sbt/sbt-avro/blob/master/LICENSE")), scriptedLaunchOpts ++= Seq( "-Xmx1024M", "-Dplugin.version=" + version.value,