From 94be79edd6d27cd834e656472406b0da2ffc109b Mon Sep 17 00:00:00 2001 From: Matthew de Detrich Date: Thu, 17 Mar 2022 10:05:51 +0100 Subject: [PATCH] Remove publishArtifact := false (#32) --- build.sbt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/build.sbt b/build.sbt index c218315..586e7f5 100644 --- a/build.sbt +++ b/build.sbt @@ -37,10 +37,6 @@ developers += Developer( organizationName := "Lightbend Inc." startYear := Some(2018) -// no API docs -Compile / doc / sources := Seq.empty -Compile / packageDoc / publishArtifact := false - enablePlugins(AutomateHeaderPlugin) ThisBuild / githubWorkflowTargetTags ++= Seq("v*") @@ -62,8 +58,7 @@ ThisBuild / publishMavenStyle := true ThisBuild / publishTo := sonatypePublishTo.value ThisBuild / test / publishArtifact := false ThisBuild / pomIncludeRepository := (_ => false) -ThisBuild / Compile / doc / sources := Seq() // See https://github.com/xerial/sbt-sonatype/issues/30#issuecomment-342532067 -sonatypeProfileName := "com.lightbend" +sonatypeProfileName := "com.lightbend" ThisBuild / githubWorkflowJavaVersions := List( JavaSpec.temurin("8"),