[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
diff --git a/rocketmq-replicator/pom.xml b/rocketmq-replicator/pom.xml
index fc35065..c7a08a3 100644
--- a/rocketmq-replicator/pom.xml
+++ b/rocketmq-replicator/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>