You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by hu...@apache.org on 2021/01/15 11:24:47 UTC

[plc4x] 01/01: Add confluent package to deployment so it appears in Nexus.

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

hutcheb pushed a commit to branch add_confluent_package_nexus
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit 747868aa7849ed8ae94f78d1fd66ecaa0db60898
Author: hutcheb <be...@gmail.com>
AuthorDate: Fri Jan 15 06:07:59 2021 -0500

    Add confluent package to deployment so it appears in Nexus.
    
    https://repository.apache.org/content/repositories/snapshots/org/apache/plc4x/plc4j-apache-kafka/
---
 plc4j/integrations/apache-kafka/pom.xml | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/plc4j/integrations/apache-kafka/pom.xml b/plc4j/integrations/apache-kafka/pom.xml
index 19373f0..6cf111b 100644
--- a/plc4j/integrations/apache-kafka/pom.xml
+++ b/plc4j/integrations/apache-kafka/pom.xml
@@ -146,6 +146,28 @@
             </execution>
         </executions>
     </plugin>
+    <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-confluent-zip</id>
+            <phase>package</phase>
+            <goals>
+              <goal>attach-artifact</goal>
+            </goals>
+            <configuration>
+              <artifacts>
+                <artifact>
+                  <file>${project.build.directory}/components/packages/${project.artifactId}-${project.version}.zip</file>
+                  <type>zip</type>
+                  <classifier>standalone</classifier>
+                </artifact>
+              </artifacts>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>