From 1809574fe6a88159a58a56a615598307ce6a3192 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Sun, 26 Apr 2026 20:41:26 +0200 Subject: [PATCH] ci: include cameleer-license-api in maven deploy project list The license-api module was added in 858975f0 but the CI deploy step's `-pl` list still only built parent + server-core + minter. server-core now depends on cameleer-license-api, which wasn't in the registry yet, so the deploy job failed with: Could not find artifact com.cameleer:cameleer-license-api:jar:1.0-SNAPSHOT in gitea (https://gitea.siegeln.net/api/packages/cameleer/maven) Add cameleer-license-api to the project list so it builds and publishes before its consumers in the same reactor invocation. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e2451b4b..430654f5 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -86,7 +86,7 @@ jobs: - name: Deploy minter to Maven registry if: github.event_name == 'push' - run: mvn deploy -DskipTests -DskipITs --batch-mode -pl .,cameleer-server-core,cameleer-license-minter + run: mvn deploy -DskipTests -DskipITs --batch-mode -pl .,cameleer-license-api,cameleer-server-core,cameleer-license-minter env: REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}