Skip to content

Commit

Permalink
Move description to project definition
Browse files Browse the repository at this point in the history
  • Loading branch information
jcazevedo committed Jan 7, 2023
1 parent 01d3dba commit f6c4cc0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ ThisBuild / organization := "net.jcazevedo"
ThisBuild / organizationName := "jcazevedo"
ThisBuild / organizationHomepage := Some(url("https://jcazevedo.net/"))

ThisBuild / scmInfo := Some(
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/jcazevedo/phalanges"),
"scm:git@github.com:jcazevedo/phalanges.git"
)
)
ThisBuild / developers := List(
ThisBuild / developers := List(
Developer(
id = "jcazevedo",
name = "Joao Azevedo",
Expand All @@ -20,12 +20,11 @@ ThisBuild / developers := List(
)
)

ThisBuild / description := "An implementation of finger trees as proposed by Hinze and Paterson."
ThisBuild / licenses := Seq(
ThisBuild / licenses := Seq(
"MIT License" ->
url("http://www.opensource.org/licenses/mit-license.php")
)
ThisBuild / homepage := Some(url("https://github.com/jcazevedo/phalanges"))
ThisBuild / homepage := Some(url("https://github.com/jcazevedo/phalanges"))

ThisBuild / pomIncludeRepository := { _ => false }
ThisBuild / publishTo := {
Expand All @@ -44,6 +43,7 @@ ThisBuild / scalafixDependencies += "com.github.liancheng" %% "organize-imports"

lazy val phalanges = (project in file(".")).settings(
name := "phalanges",
description := "An implementation of finger trees as proposed by Hinze and Paterson.",
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-collection-compat" % "2.8.1",
"org.scalacheck" %% "scalacheck" % "1.17.0" % "test",
Expand Down

0 comments on commit f6c4cc0

Please sign in to comment.