You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by zh...@apache.org on 2022/03/02 03:39:36 UTC

[rocketmq-connect] 26/39: [ISSUE #468] Replicator is packaged as fatjar (#472)

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

zhoubo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-connect.git

commit 7201d00f7d30b35f8e00ec179b1dce46ffea85fa
Author: zhoubo <87...@qq.com>
AuthorDate: Thu Dec 5 09:56:16 2019 +0800

    [ISSUE #468] Replicator is packaged as fatjar (#472)
    
    * Replicator is packaged as fatjar
    https://github.com/apache/rocketmq-externals/issues/468
    
    * Upgrade openmessaging-connector version
---
 pom.xml | 22 +++++++++++++++++++++-
 1 file changed, 21 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index fc35065..c7a08a3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,6 +34,25 @@
                     <target>8</target>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <version>3.2.0</version>
+                <configuration>
+                    <descriptorRefs>
+                        <descriptorRef>jar-with-dependencies</descriptorRef>
+                    </descriptorRefs>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>assemble-all</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 
@@ -45,7 +64,8 @@
         <dependency>
             <groupId>io.openmessaging</groupId>
             <artifactId>openmessaging-connector</artifactId>
-            <version>0.1.1-beta-SNAPSHOT</version>
+            <version>0.1.1</version>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>junit</groupId>