You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by vo...@apache.org on 2021/08/25 10:03:55 UTC

[rocketmq-flink] branch main updated: Update pom.xml

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

vongosling pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/rocketmq-flink.git


The following commit(s) were added to refs/heads/main by this push:
     new 32b51b1  Update pom.xml
32b51b1 is described below

commit 32b51b1d836fa4db1318164a2083d1c89cce3cf3
Author: von gosling <vo...@apache.org>
AuthorDate: Wed Aug 25 18:03:50 2021 +0800

    Update pom.xml
---
 pom.xml | 28 +++++++++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 0f3f153..cf95657 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,6 +38,7 @@
         <commons-lang.version>2.5</commons-lang.version>
         <scala.binary.version>2.11</scala.binary.version>
         <spotless.version>2.4.2</spotless.version>
+	<jaxb-api.version>2.3.1</jaxb-api.version>
     </properties>
 
     <dependencies>
@@ -224,6 +225,31 @@
                     </excludes>
                 </configuration>
             </plugin>
+	    <plugin>
+                <groupId>org.jacoco</groupId>
+                <artifactId>jacoco-maven-plugin</artifactId>
+                <version>0.8.7</version>
+                <executions>
+                    <execution>
+                        <id>prepare-agent</id>
+                        <goals>
+                            <goal>prepare-agent</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.eluder.coveralls</groupId>
+                <artifactId>coveralls-maven-plugin</artifactId>
+                <version>4.3.0</version>
+                <dependencies>
+                    <dependency>
+                        <groupId>javax.xml.bind</groupId>
+                        <artifactId>jaxb-api</artifactId>
+                        <version>${jaxb-api.version}</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
             <plugin>
                 <artifactId>maven-checkstyle-plugin</artifactId>
                 <version>2.17</version>
@@ -289,4 +315,4 @@
             </plugin>
         </plugins>
     </build>
-</project>
\ No newline at end of file
+</project>