fix(build): don't skip deploying flash-extensions' own POM
Publish Maven packages / publish (push) Successful in 2m2s

Its maven-deploy-plugin was configured with <skip>true</skip>, so the
first successful publish-maven.yml run deployed flash-parent, flash,
and every flash-ext-* jar to Gitea's Maven registry, but not
flash-extensions itself — the pom-packaging aggregator every
flash-ext-* submodule's effective POM inherits from via <parent>.
Remote consumers (Pathway's Docker build, resolving flash-ext-* from
the registry instead of a local ~/.m2 install) couldn't resolve that
parent POM and failed with "artifacts could not be resolved:
flash-extensions:pom (absent)".

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Zakaria El Orche
2026-08-12 20:30:12 +00:00
co-authored by Claude Sonnet 5
parent 3f0b49fa36
commit 88ac3c3d1f
+8 -13
View File
@@ -126,18 +126,13 @@
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.2</version>
<inherited>false</inherited>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<!--
No maven-deploy-plugin skip here (there used to be one): flash-extensions is a
pom-packaging aggregator with no jar of its own, but every flash-ext-* submodule's
effective POM inherits from it via <parent> — skipping its deploy meant remote consumers
(anything resolving a flash-ext-* artifact from Gitea's Maven registry rather than a
local ~/.m2 install) couldn't resolve that parent POM at all. See
pathway/.gitea/workflows/docker-build.yml and pathway/docs/CI-CD.md.
-->
</project>