From 5af65eba2edecdf13bbda837cd5a529791dcefe0 Mon Sep 17 00:00:00 2001 From: Ivan Subotic <400790+subotic@users.noreply.github.com> Date: Wed, 12 Oct 2022 13:23:23 +0200 Subject: [PATCH] build: fix project name (#2239) Co-authored-by: Balduin Landolt <33053745+BalduinLandolt@users.noreply.github.com> --- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index ee855c76f3..c74f3023e3 100644 --- a/build.sbt +++ b/build.sbt @@ -70,7 +70,8 @@ lazy val root: Project = Project(id = "root", file(".")) git.useGitDescribe := true, // override generated version string because docker hub rejects '+' in tags ThisBuild / version ~= (_.replace('+', '-')), - publish / skip := true + publish / skip := true, + name := "dsp-api" ) addCommandAlias("fmt", "; all root/scalafmtSbt root/scalafmtAll; root/scalafixAll")