You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2021/09/08 18:20:06 UTC

[plc4x-build-tools] 02/02: Prevented the checksum to be generated in every module

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x-build-tools.git

commit 2ad9eb5d1a6a6ec04a55209de0b7ee2308d293bd
Author: cdutz <ch...@c-ware.de>
AuthorDate: Wed Sep 8 20:19:46 2021 +0200

    Prevented the checksum to be generated in every module
---
 code-generation/pom.xml | 2 ++
 plc4x-site-skin/pom.xml | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/code-generation/pom.xml b/code-generation/pom.xml
index cffdf72..d85eb0e 100644
--- a/code-generation/pom.xml
+++ b/code-generation/pom.xml
@@ -205,6 +205,8 @@
             <groupId>net.nicoulaj.maven.plugins</groupId>
             <artifactId>checksum-maven-plugin</artifactId>
             <version>1.11</version>
+            <!-- Only run this in the root module of the project -->
+            <inherited>false</inherited>
             <executions>
               <execution>
                 <goals>
diff --git a/plc4x-site-skin/pom.xml b/plc4x-site-skin/pom.xml
index 5633c70..d645bb2 100644
--- a/plc4x-site-skin/pom.xml
+++ b/plc4x-site-skin/pom.xml
@@ -416,6 +416,8 @@
             <groupId>net.nicoulaj.maven.plugins</groupId>
             <artifactId>checksum-maven-plugin</artifactId>
             <version>1.11</version>
+            <!-- Only run this in the root module of the project -->
+            <inherited>false</inherited>
             <executions>
               <execution>
                 <goals>