From ccedb0bb34501192455ba4c19c677d8b39bb5bc8 Mon Sep 17 00:00:00 2001 From: Pat Losoponkul Date: Tue, 28 Jul 2026 16:07:10 +0700 Subject: [PATCH] fix(build): publish Maven artifacts under hyperledger-identus namespace Follow-up to #18. The sbt release process runs `publishArtifacts`, which uses sbt-github-packages to publish the jar+POM to `maven.pkg.github.com//`. These were still pointing at the legacy `hyperledger` / `identus-keycloak-plugins` repo, which is orphaned (404), so the release aborted there: [publish] java.io.FileNotFoundException: https://maven.pkg.github.com/hyperledger/identus-keycloak-plugins/.../0.2.1/identus-keycloak-oid4vci-0.2.1.pom Point them at the current repo (`hyperledger-identus`/`keycloak-plugins`) so the publish (and thus the docker image push that follows it in the release) can complete. Signed-off-by: Pat Losoponkul --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index ace8a39..3fdf5e1 100644 --- a/build.sbt +++ b/build.sbt @@ -7,8 +7,8 @@ val V = new { } lazy val commonSettings = Seq( - githubOwner := "hyperledger", - githubRepository := "identus-keycloak-plugins" + githubOwner := "hyperledger-identus", + githubRepository := "keycloak-plugins" ) lazy val oid4vciPlugin = (project in file("."))