From 636680d50931f2cda2772fd64fbd4b0a3d5439ef Mon Sep 17 00:00:00 2001 From: Benjamin Cavy <1528358+ptitFicus@users.noreply.github.com> Date: Fri, 26 Jul 2024 17:48:45 +0200 Subject: [PATCH] chore: fix maven central publication --- build.sbt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build.sbt b/build.sbt index d4304f5c..73a226be 100644 --- a/build.sbt +++ b/build.sbt @@ -8,12 +8,7 @@ lazy val root = (project in file(".")) .enablePlugins(PlayScala) .enablePlugins(BuildInfoPlugin) .settings( - // enable publishing the jar produced by `Test/package` Compile / packageBin / publishArtifact := false, - // enable publishing the test API jar - Compile / packageDoc / publishArtifact := false, - // enable publishing the test sources jar - Compile / packageSrc / publishArtifact := false, addArtifact(Artifact("izanami", "jar", "jar"), assembly) )