You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/12/09 12:19:56 UTC

[camel-kafka-connector] branch master updated: Made source and binary distribution names compliant with camel site download page generation. See #754 Skipped publication of complete source artifact

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git


The following commit(s) were added to refs/heads/master by this push:
     new b0df9c7  Made source and binary distribution names compliant with camel site download page generation. See #754 Skipped publication of complete source artifact
b0df9c7 is described below

commit b0df9c7ba49826f3cefa2b7a6753656829c6f186
Author: Andrea Tarocchi <an...@gmail.com>
AuthorDate: Wed Dec 9 11:36:41 2020 +0100

    Made source and binary distribution names compliant with camel site download page generation.
    See #754
    Skipped publication of complete source artifact
---
 distribution/pom.xml | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

diff --git a/distribution/pom.xml b/distribution/pom.xml
index 5233b70..114d067 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -28,6 +28,19 @@
 
   <name>Camel-Kafka-Connector :: Distribution</name>
   <artifactId>apache-camel-kafka-connector-distribution</artifactId>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
   <profiles>
     <profile>
       <id>release</id>
@@ -45,7 +58,8 @@
                   <goal>single</goal>
                 </goals>
                 <configuration>
-                  <finalName>camel-kafka-connector-source-${project.version}</finalName>
+                  <finalName>camel-kafka-connector-${project.version}-src</finalName>
+                  <appendAssemblyId>false</appendAssemblyId>
                   <descriptors>
                     <descriptor>src/main/assemblies/source-release.xml</descriptor>
                   </descriptors>
@@ -58,7 +72,8 @@
                   <goal>single</goal>
                 </goals>
                 <configuration>
-                  <finalName>camel-kafka-connector-binary-${project.version}</finalName>
+                  <finalName>camel-kafka-connector-${project.version}</finalName>
+                  <appendAssemblyId>false</appendAssemblyId>
                   <descriptors>
                     <descriptor>src/main/assemblies/binary-release.xml</descriptor>
                   </descriptors>