Skip to content

Fix Deploy Snapshots: add -SNAPSHOT suffix to version 0.2.2 - #9

Draft
alexheifetz with Copilot wants to merge 3 commits into
mainfrom
copilot/fix-build-and-deploy-job
Draft

Fix Deploy Snapshots: add -SNAPSHOT suffix to version 0.2.2#9
alexheifetz with Copilot wants to merge 3 commits into
mainfrom
copilot/fix-build-and-deploy-job

Conversation

Copilot AI commented Jun 28, 2026

Copy link
Copy Markdown

The "Deploy Snapshots" CI job was failing with 401 on https://repo.embabel.com/artifactory/libs-release because version 0.2.2 (non-SNAPSHOT) caused Maven to route deployment to the releases repository instead of snapshots. The EMBABEL_ARTIFACTORY credentials only have write access to the snapshots repo.

Changes

  • Version fix: 0.2.20.2.2-SNAPSHOT in all four pom.xml files (parent + 3 submodules), restoring Maven's routing to embabel-snapshots
  • Incorporates 2.0.0 branch changes: Cherry-picked the "Boot 4.1 stream upgrade" commit (new parent POM com.embabel.build:embabel-build-parent:2.0.0-SNAPSHOT, updated embabel-common and embabel-agent versions to 2.0.0-SNAPSHOT)
  • Gitignore cleanup: Added *.versionsBackup to .gitignore and removed Maven version plugin backup files that were accidentally committed
<!-- Before -->
<version>0.2.2</version>   <!-- routes to libs-release → 401 -->

<!-- After -->
<version>0.2.2-SNAPSHOT</version>   <!-- routes to libs-snapshot → succeeds -->

Copilot AI changed the title [WIP] Fix failing GitHub Actions job build-and-deploy Fix Deploy Snapshots: add -SNAPSHOT suffix to version 0.2.2 Jun 28, 2026
Copilot AI requested a review from alexheifetz June 28, 2026 03:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants