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:28 UTC

[rocketmq-connect] 18/39: chore(runtime/replicator): change rocketmq dependency from 4.4.0 to 4.5.2

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 dfb32fd86f7b9990119ccf4ce1346e048ddcfea6
Author: Yongqi Feng <fy...@163.com>
AuthorDate: Sat Oct 19 13:14:13 2019 +0800

    chore(runtime/replicator): change rocketmq dependency from 4.4.0 to 4.5.2
    
    1. change rocketmq dependency from 4.4.0 to 4.5.2
    2. fix replicator can't load class
    3. fix replicator can't start
    
    Closes #431
---
 pom.xml | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index b528c80..51a6177 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,9 +24,21 @@
     <groupId>org.apache.rocketmq</groupId>
     <artifactId>rocketmq-replicator</artifactId>
     <version>0.1.0-SNAPSHOT</version>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>6</source>
+                    <target>6</target>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 
     <properties>
-        <rocketmq.version>4.4.0</rocketmq.version>
+        <rocketmq.version>4.5.2</rocketmq.version>
     </properties>
 
     <dependencies>