You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by st...@apache.org on 2021/08/13 12:45:56 UTC

[rocketmq-dashboard] branch master updated (e47dcc4 -> 91b173b)

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

styletang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-dashboard.git.


 discard e47dcc4  Add jaxb-api to solve the class missing failure of coveralls-maven-plugin JDK11
 discard c6935e6  Add jaxb-api to solve the class missing failure of coveralls-maven-plugin JDK11
 discard c235c56  update coverage status
     new 91b173b  update coverage status

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e47dcc4)
            \
             N -- N -- N   refs/heads/master (91b173b)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:

[rocketmq-dashboard] 01/01: update coverage status

Posted by st...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 91b173b8e0372b57498f16f333156ce6a049c88c
Author: StyleTang <st...@gmail.com>
AuthorDate: Fri Aug 13 20:44:44 2021 +0800

    update coverage status
---
 .travis.yml |  2 +-
 pom.xml     | 28 +++++++++++++++++++++++++++-
 2 files changed, 28 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 715c8a1..edf718c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,7 +15,7 @@ jdk:
 
 script:
   - travis_retry mvn -B clean
-  - travis_retry mvn -B package findbugs:findbugs
+  - travis_retry mvn -B package findbugs:findbugs jacoco:report coveralls:report
   
 #    - travis_retry mvn -B package findbugs:findbugs coveralls:report
 #after_success:
diff --git a/pom.xml b/pom.xml
index 50bc90f..4ee8e0b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -71,6 +71,7 @@
         <docker.image.prefix>apacherocketmq</docker.image.prefix>
         <spring.boot.version>2.2.2.RELEASE</spring.boot.version>
         <mockito-inline.version>3.3.3</mockito-inline.version>
+        <jaxb-api.version>2.3.1</jaxb-api.version>
     </properties>
 
     <dependencies>
@@ -185,6 +186,11 @@
             <version>1.68</version>
         </dependency>
         <dependency>
+            <groupId>javax.xml.bind</groupId>
+            <artifactId>jaxb-api</artifactId>
+            <version>${jaxb-api.version}</version>
+        </dependency>
+        <dependency>
             <groupId>org.projectlombok</groupId>
             <artifactId>lombok</artifactId>
             <version>${lombok.version}</version>
@@ -283,10 +289,30 @@
                 <artifactId>findbugs-maven-plugin</artifactId>
                 <version>3.0.4</version>
             </plugin>
-             <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>
         </plugins>
     </build>