Skip to content

Commit

Permalink
fix trautonen/coveralls-maven-plugin#141 ClassNotFoundException: java…
Browse files Browse the repository at this point in the history
…x.xml.bind.DatatypeConverter since running on JDK 17
  • Loading branch information
xtermi2 committed May 12, 2024
1 parent 5590cdd commit f777260
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,16 @@
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>${coveralls-maven-plugin.version}</version>
<dependencies>
<!-- fix https://github.com/trautonen/coveralls-maven-plugin/issues/141
ClassNotFoundException: javax.xml.bind.DatatypeConverter
when running on JDK 17-->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down

0 comments on commit f777260

Please sign in to comment.