You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2021/12/28 20:26:21 UTC

[incubator-streampipes] branch dev updated: [hotfix] Deploy module pipeline-elements-shared to maven repository

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

zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new 7fd8b44  [hotfix] Deploy module pipeline-elements-shared to maven repository
7fd8b44 is described below

commit 7fd8b448ab7cb14b4d32a0be22d35da8fd4434f0
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Tue Dec 28 21:26:12 2021 +0100

    [hotfix] Deploy module pipeline-elements-shared to maven repository
---
 streampipes-extensions/pom.xml                           |  3 ++-
 .../streampipes-pipeline-elements-shared/pom.xml         | 16 ++++------------
 2 files changed, 6 insertions(+), 13 deletions(-)

diff --git a/streampipes-extensions/pom.xml b/streampipes-extensions/pom.xml
index 4a3c99f..8f8ae9c 100644
--- a/streampipes-extensions/pom.xml
+++ b/streampipes-extensions/pom.xml
@@ -64,6 +64,7 @@
 
     <properties>
         <owasp.check.skip>true</owasp.check.skip>
+        <maven.deploy.skip>true</maven.deploy.skip>
 
         <amqp-client.version>4.1.0</amqp-client.version>
         <animal-sniffer-annotations.version>1.17</animal-sniffer-annotations.version>
@@ -633,7 +634,7 @@
                     <artifactId>maven-deploy-plugin</artifactId>
                     <version>2.8.2</version>
                     <configuration>
-                        <skip>true</skip>
+                        <skip>${maven.deploy.skip}</skip>
                     </configuration>
                 </plugin>
             </plugins>
diff --git a/streampipes-extensions/streampipes-pipeline-elements-shared/pom.xml b/streampipes-extensions/streampipes-pipeline-elements-shared/pom.xml
index b309c80..69dee79 100644
--- a/streampipes-extensions/streampipes-pipeline-elements-shared/pom.xml
+++ b/streampipes-extensions/streampipes-pipeline-elements-shared/pom.xml
@@ -27,6 +27,10 @@
 
     <artifactId>streampipes-pipeline-elements-shared</artifactId>
 
+    <properties>
+        <maven.deploy.skip>false</maven.deploy.skip>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>com.google.code.gson</groupId>
@@ -53,17 +57,5 @@
             <version>0.69.0-SNAPSHOT</version>
         </dependency>
     </dependencies>
-
-    <build>
-        <pluginManagement>
-            <plugins>
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-deploy-plugin</artifactId>
-                    <version>2.8.2</version>
-                </plugin>
-            </plugins>
-        </pluginManagement>
-    </build>
 </project>