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/18 14:48:05 UTC

[plc4x] branch rel/0.9 updated: Prevented the plc4c and plc4go modules to deploy artifacts to a maven repo.

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

cdutz pushed a commit to branch rel/0.9
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/rel/0.9 by this push:
     new 8cb0609  Prevented the plc4c and plc4go modules to deploy artifacts to a maven repo.
8cb0609 is described below

commit 8cb0609f750b548bd796e65a23e52bcead1ffa21
Author: cdutz <ch...@c-ware.de>
AuthorDate: Sat Sep 18 16:47:58 2021 +0200

    Prevented the plc4c and plc4go modules to deploy artifacts to a maven repo.
---
 plc4c/pom.xml  | 9 +++++++++
 plc4go/pom.xml | 9 +++++++++
 2 files changed, 18 insertions(+)

diff --git a/plc4c/pom.xml b/plc4c/pom.xml
index c48822b..0fcf8a6 100644
--- a/plc4c/pom.xml
+++ b/plc4c/pom.xml
@@ -340,6 +340,15 @@
           </execution>
         </executions>
       </plugin>
+
+      <!-- For this module deploying maven artifacts doesn't make any sense -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
     </plugins>
     <!--
       Developers working in plc4c will probably use an IDE like CLion to edit just this
diff --git a/plc4go/pom.xml b/plc4go/pom.xml
index 50a5f56..3c55992 100644
--- a/plc4go/pom.xml
+++ b/plc4go/pom.xml
@@ -556,6 +556,15 @@
           </execution>
         </executions>
       </plugin>
+
+      <!-- For this module deploying maven artifacts doesn't make any sense -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
     </plugins>
   </build>