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

vveider pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-extensions.git


The following commit(s) were added to refs/heads/master by this push:
     new 0e133def IGNITE-19368 Fix ignite-cdc-ext assembly: bring back 
kafka-clients and slf4j-api (#218)
0e133def is described below

commit 0e133defd5aa1f64050470f1a3ca9afa7d2751b2
Author: Ilya Shishkov <shishkovi...@gmail.com>
AuthorDate: Fri Jul 21 16:57:33 2023 +0300

    IGNITE-19368 Fix ignite-cdc-ext assembly: bring back kafka-clients and 
slf4j-api (#218)
---
 modules/cdc-ext/pom.xml | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/modules/cdc-ext/pom.xml b/modules/cdc-ext/pom.xml
index 7d34e450..4b9ecaf9 100644
--- a/modules/cdc-ext/pom.xml
+++ b/modules/cdc-ext/pom.xml
@@ -145,4 +145,26 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-dependency-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <!-- Copy cdc dependencies. -->
+                        <phase>prepare-package</phase>
+                        <goals>
+                            <goal>copy-dependencies</goal>
+                        </goals>
+                        <configuration>
+                            
<outputDirectory>${project.build.directory}/libs</outputDirectory>
+                            <!-- Include only runtime and compile dependencies 
-->
+                            <includeScope>runtime</includeScope>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
 </project>

Reply via email to