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/07 06:26:23 UTC

[camel-kafka-connector] branch master updated (b64e2b6 -> 77b35cf)

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

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


    from b64e2b6  Updated CHANGELOG.md
     new 9395995  Added 0.6.1 release to compatibility matrix.
     new 77b35cf  fix #754 : create binary ditribution.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 distribution/pom.xml                               | 15 ++++++-
 .../src/main/assemblies/binary-release.xml         | 48 ++++++++++++++++++++++
 .../ROOT/pages/camel-compatibility-matrix.adoc     |  1 +
 3 files changed, 63 insertions(+), 1 deletion(-)
 create mode 100644 distribution/src/main/assemblies/binary-release.xml


[camel-kafka-connector] 01/02: Added 0.6.1 release to compatibility matrix.

Posted by ac...@apache.org.
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

commit 939599596b1e39b48fb6643447434cdf37f0b686
Author: Andrea Tarocchi <an...@gmail.com>
AuthorDate: Sun Dec 6 23:16:32 2020 +0100

    Added 0.6.1 release to compatibility matrix.
---
 docs/modules/ROOT/pages/camel-compatibility-matrix.adoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/modules/ROOT/pages/camel-compatibility-matrix.adoc b/docs/modules/ROOT/pages/camel-compatibility-matrix.adoc
index b583621..1e5d7be 100644
--- a/docs/modules/ROOT/pages/camel-compatibility-matrix.adoc
+++ b/docs/modules/ROOT/pages/camel-compatibility-matrix.adoc
@@ -13,4 +13,5 @@ In this section we report the compatibility matrix between Camel and Camel Kafka
 |0.4.4                         |3.4.4             |yes |camel-kafka-connector-0.4.x
 |0.5.0                         |3.5.0             |no  |camel-kafka-connector-0.5.x
 |0.6.0                         |3.6.0             |no  |camel-kafka-connector-0.6.x
+|0.6.0                         |3.6.1             |no  |camel-kafka-connector-0.6.x
 |=======================================================================


[camel-kafka-connector] 02/02: fix #754 : create binary ditribution.

Posted by ac...@apache.org.
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

commit 77b35cf56e3f783c6b5acfa8954975c808097b0f
Author: Andrea Tarocchi <an...@gmail.com>
AuthorDate: Sun Dec 6 23:57:13 2020 +0100

    fix #754 : create binary ditribution.
---
 distribution/pom.xml                               | 15 ++++++-
 .../src/main/assemblies/binary-release.xml         | 48 ++++++++++++++++++++++
 2 files changed, 62 insertions(+), 1 deletion(-)

diff --git a/distribution/pom.xml b/distribution/pom.xml
index 7066115..5233b70 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -45,12 +45,25 @@
                   <goal>single</goal>
                 </goals>
                 <configuration>
-                  <finalName>camel-kafka-connector-${project.version}</finalName>
+                  <finalName>camel-kafka-connector-source-${project.version}</finalName>
                   <descriptors>
                     <descriptor>src/main/assemblies/source-release.xml</descriptor>
                   </descriptors>
                 </configuration>
               </execution>
+              <execution>
+                <id>binary-release</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+                <configuration>
+                  <finalName>camel-kafka-connector-binary-${project.version}</finalName>
+                  <descriptors>
+                    <descriptor>src/main/assemblies/binary-release.xml</descriptor>
+                  </descriptors>
+                </configuration>
+              </execution>
             </executions>
           </plugin>
         </plugins>
diff --git a/distribution/src/main/assemblies/binary-release.xml b/distribution/src/main/assemblies/binary-release.xml
new file mode 100644
index 0000000..44d9fe2
--- /dev/null
+++ b/distribution/src/main/assemblies/binary-release.xml
@@ -0,0 +1,48 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+-->
+<assembly>
+  <id>source-release</id>
+  <!-- the only thing being done differently here is the base directory -->
+  <baseDirectory>apache-camel-kafkaconnector-${version}</baseDirectory>
+  <formats>
+    <format>zip</format>
+  </formats>
+  <includeBaseDirectory>true</includeBaseDirectory>
+  <moduleSets>
+    <moduleSet>
+      <useAllReactorProjects>true</useAllReactorProjects>
+      <includes>
+        <include>org.apache.camel.kafkaconnector:camel-*-kafka-connector</include>
+      </includes>
+      <sources>
+        <includeModuleDirectory>false</includeModuleDirectory>
+        <fileSets>
+          <fileSet>
+            <directory>target/</directory>
+            <outputDirectory>.</outputDirectory>
+            <includes>
+              <include>*.zip</include>
+            </includes>
+          </fileSet>
+        </fileSets>
+      </sources>
+    </moduleSet>
+  </moduleSets>
+</assembly>