Skip to content

Commit 710427d

Browse files
manusaclaude
andauthored
fix(bom): skip deployment of bom-generator-plugin
The bom-generator-plugin is an internal build tool that should not be published to Maven Central. During snapshot releases, the plugin was being deployed early in the build, causing checksum validation failures when later modules tried to resolve its metadata due to Sonatype Central replication delays. This complements commit 5552acd which excluded the plugin from generated BOMs. That fix prevented the plugin from appearing as a BOM dependency, but didn't prevent the plugin itself from being deployed. Adding maven.deploy.skip=true follows the same pattern used by other internal modules (tekton/examples, karaf/itests, chaos-tests). Fixes: https://github.com/fabric8io/kubernetes-client/actions/runs/22090965078 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5552acd commit 710427d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bom-generator-plugin/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232

3333
<packaging>maven-plugin</packaging>
3434

35+
<properties>
36+
<maven.deploy.skip>true</maven.deploy.skip>
37+
</properties>
38+
3539
<dependencies>
3640
<dependency>
3741
<groupId>org.apache.maven</groupId>

0 commit comments

Comments
 (0)