coveralls-maven-plugin
coveralls-maven-plugin copied to clipboard
eta on java 11 support?
is there an eta on when a release will be cut that supports this? thanks!
See my pull request #138 to fix the issue.
Thanks for the fix @frimtec. For anyone waiting for it, know as a workarround you can add the dependencies in your own build
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>${maven.coveralls.plugin.version}</version>
<dependencies>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>2.3.2</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.2</version>
</dependency>
</dependencies>
</plugin>
It seems the latest solution doesn't work at all. I found a new solution for that here;
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.6</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>
<configuration>
<failOnServiceError>false</failOnServiceError>
</configuration>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
</dependencies>
</plugin>
It worked on me.
I confirm adding the jaxb-api dependency works with Java 11 and 17
I confirm adding the jaxb-api dependency works with Java 11 and 17
@ebourg Could you please confirm and make a PR with that?