Skip to content

Commit

Permalink
Add scm and developers
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Sep 3, 2021
1 parent 0987565 commit 96c035e
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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:[email protected]: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 = "[email protected]",
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,
Expand Down

0 comments on commit 96c035e

Please sign in to comment.