From f193820f1e3a5777ce0253c22ee37b9758f7aa1a Mon Sep 17 00:00:00 2001 From: etorreborre Date: Sun, 12 Sep 2021 11:42:10 +0200 Subject: [PATCH] project: fixed the publishing poms were missing developer/licence info --- build.sbt | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/build.sbt b/build.sbt index 0f79a20a86..f7d4d239af 100644 --- a/build.sbt +++ b/build.sbt @@ -39,6 +39,14 @@ val Scala3 = "3.0.2" lazy val specs2Settings = Seq( organization := "org.specs2", + homepage := Some(url("https://github.com/etorreborre/specs2")), + licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")), + developers := List( + Developer( + "etorreborre", + "Eric Torreborre", + "etorreborre@yahoo.com", + url("https://github.com/etorreborre"))), specs2ShellPrompt, ThisBuild / crossScalaVersions := Seq(Scala3), ThisBuild / scalaVersion := Scala3 @@ -296,17 +304,6 @@ lazy val releaseSettings: Seq[Setting[_]] = Seq( params = Map("branch" -> "gh-pages", "clean" -> "false", "folder" -> "target/specs2-reports/site") ) ), - organization := "org.specs2", - homepage := Some(url("https://github.com/etorreborre/specs2")), - licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")), - developers := List( - Developer( - "etorreborre", - "Eric Torreborre", - "etorreborre@yahoo.com", - url("https://github.com/etorreborre") - ) - ), ThisBuild / git.gitTagToVersionNumber := { tag: String => if (tag matches SPECS2 + ".*") Some(tag.replace(SPECS2, "")) else None }, @@ -325,6 +322,7 @@ lazy val aggregateCompile = ScopeFilter( matcherExtra.jvm, html, form, + guide, markdown, junit.jvm, scalacheck.jvm,