diff --git a/castor/lib/build.sbt b/castor/lib/build.sbt index 95fd7b419e..67ac4e4e4f 100644 --- a/castor/lib/build.sbt +++ b/castor/lib/build.sbt @@ -8,6 +8,9 @@ inThisBuild( run / connectInput := true, versionScheme := Some("semver-spec"), testFrameworks := Seq(new TestFramework("zio.test.sbt.ZTestFramework")), + releaseUseGlobalVersion := false, + githubOwner := "input-output-hk", + githubRepository := "atala-prism-building-blocks", resolvers += Resolver.githubPackages("input-output-hk"), resolvers += "JetBrains Space Maven Repository" at "https://maven.pkg.jetbrains.space/public/p/kotlinx-coroutines/maven" ) @@ -27,9 +30,6 @@ sys.env .map { _ => println("### Configure release process ###") import sbtrelease.ReleasePlugin.autoImport.ReleaseTransformations._ - ThisBuild / releaseUseGlobalVersion := false - ThisBuild / githubOwner := "input-output-hk" - ThisBuild / githubRepository := "atala-prism-building-blocks" releaseProcess := Seq[ReleaseStep]( checkSnapshotDependencies, inquireVersions, diff --git a/mercury/mercury-library/build.sbt b/mercury/mercury-library/build.sbt index de89039682..92e5e39112 100644 --- a/mercury/mercury-library/build.sbt +++ b/mercury/mercury-library/build.sbt @@ -5,6 +5,9 @@ inThisBuild( fork := true, run / connectInput := true, versionScheme := Some("semver-spec"), + releaseUseGlobalVersion := false, + githubOwner := "input-output-hk", + githubRepository := "atala-prism-building-blocks" ) ) @@ -22,9 +25,6 @@ sys.env .map { _ => println("### Configure release process ###") import sbtrelease.ReleasePlugin.autoImport.ReleaseTransformations._ - ThisBuild / releaseUseGlobalVersion := false - ThisBuild / githubOwner := "input-output-hk" - ThisBuild / githubRepository := "atala-prism-building-blocks" releaseProcess := Seq[ReleaseStep]( checkSnapshotDependencies, inquireVersions, diff --git a/prism-node/client/scala-client/build.sbt b/prism-node/client/scala-client/build.sbt index 15904cf864..430b0120bf 100644 --- a/prism-node/client/scala-client/build.sbt +++ b/prism-node/client/scala-client/build.sbt @@ -6,7 +6,10 @@ inThisBuild( scalaVersion := "3.2.2", fork := true, run / connectInput := true, - versionScheme := Some("semver-spec") + versionScheme := Some("semver-spec"), + releaseUseGlobalVersion := false, + githubOwner := "input-output-hk", + githubRepository := "atala-prism-building-blocks" ) ) @@ -24,9 +27,6 @@ sys.env .map { _ => println("### Configure release process ###") import sbtrelease.ReleasePlugin.autoImport.ReleaseTransformations._ - ThisBuild / releaseUseGlobalVersion := false - ThisBuild / githubOwner := "input-output-hk" - ThisBuild / githubRepository := "atala-prism-building-blocks" releaseProcess := Seq[ReleaseStep]( checkSnapshotDependencies, inquireVersions, diff --git a/shared/build.sbt b/shared/build.sbt index d1716ce4c8..9b439680e0 100644 --- a/shared/build.sbt +++ b/shared/build.sbt @@ -9,6 +9,9 @@ inThisBuild( fork := true, run / connectInput := true, versionScheme := Some("semver-spec"), + releaseUseGlobalVersion := false, + githubOwner := "input-output-hk", + githubRepository := "atala-prism-building-blocks" ) ) @@ -26,9 +29,6 @@ sys.env .map { _ => println("### Configure release process ###") import sbtrelease.ReleasePlugin.autoImport.ReleaseTransformations._ - ThisBuild / releaseUseGlobalVersion := false - ThisBuild / githubOwner := "input-output-hk" - ThisBuild / githubRepository := "atala-prism-building-blocks" releaseProcess := Seq[ReleaseStep]( checkSnapshotDependencies, inquireVersions,