This is an automated email from the ASF dual-hosted git repository.
jsinovassin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git
The following commit(s) were added to refs/heads/master by this push:
new e995c2b75 UNOMI-981: deploy the distribution again (#862)
e995c2b75 is described below
commit e995c2b757c76e8d48d1db61ce1e23d34ea9bfe4
Author: Jonathan SINOVASSIN-NAIK <[email protected]>
AuthorDate: Tue Sep 15 18:00:26 2026 +0200
UNOMI-981: deploy the distribution again (#862)
---
package/pom.xml | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/package/pom.xml b/package/pom.xml
index 7fd7b4d41..0c9b57b68 100644
--- a/package/pom.xml
+++ b/package/pom.xml
@@ -414,6 +414,10 @@
<goal>jar</goal>
</goals>
<configuration>
+ <!-- A classifier keeps this jar a side artifact. Without
one, the jar plugin makes it
+ the artifact of this pom-packaged module, which is
what the blanket deploy skip
+ below was added to hide, and that skip took the
distribution with it. -->
+ <classifier>buildcache</classifier>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
@@ -424,15 +428,6 @@
</executions>
</plugin>
- <!-- Ensure the dummy jar is NOT deployed -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
-
</plugins>
</build>