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
The following commit(s) were added to refs/heads/master by this push:
new e47dcc4 Add jaxb-api to solve the class missing failure of
coveralls-maven-plugin JDK11
e47dcc4 is described below
commit e47dcc42ef5b082ad2a1df385eca0deef9325e0c
Author: StyleTang <[email protected]>
AuthorDate: Fri Aug 13 20:36:18 2021 +0800
Add jaxb-api to solve the class missing failure of coveralls-maven-plugin
JDK11
---
pom.xml | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 32b9fee..4ee8e0b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -302,10 +302,17 @@
</execution>
</executions>
</plugin>
- <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>