This is an automated email from the ASF dual-hosted git repository.
cdutz pushed a commit to branch rel/0.13
in repository https://gitbox.apache.org/repos/asf/plc4x-extras.git
The following commit(s) were added to refs/heads/rel/0.13 by this push:
new 4c98ef4 fix: Added a setting that will make the build succeed even in
a source bundle without Git metadata.
4c98ef4 is described below
commit 4c98ef48b5b0384b9ce51a56ef6818629a2be906
Author: Christofer Dutz <[email protected]>
AuthorDate: Thu Aug 7 18:47:36 2025 +0200
fix: Added a setting that will make the build succeed even in a source
bundle without Git metadata.
---
plc4j/integrations/apache-nifi/nifi-1/nifi-plc4x-nar/pom.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/plc4j/integrations/apache-nifi/nifi-1/nifi-plc4x-nar/pom.xml
b/plc4j/integrations/apache-nifi/nifi-1/nifi-plc4x-nar/pom.xml
index 12949a6..0091698 100644
--- a/plc4j/integrations/apache-nifi/nifi-1/nifi-plc4x-nar/pom.xml
+++ b/plc4j/integrations/apache-nifi/nifi-1/nifi-plc4x-nar/pom.xml
@@ -74,6 +74,10 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
+ <configuration>
+ <!-- Without this, the build will fail
when building from a source bundle -->
+
<revisionOnScmFailure>unknown</revisionOnScmFailure>
+ </configuration>
</plugin>
</plugins>
</build>