Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eta on java 11 support? #137

Open
jgangemi opened this issue Feb 25, 2020 · 5 comments
Open

eta on java 11 support? #137

jgangemi opened this issue Feb 25, 2020 · 5 comments

Comments

@jgangemi
Copy link

is there an eta on when a release will be cut that supports this? thanks!

@frimtec
Copy link

frimtec commented May 24, 2020

See my pull request #138 to fix the issue.

@abelsromero
Copy link

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>

@portlek
Copy link

portlek commented Nov 6, 2020

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.

@ebourg
Copy link

ebourg commented May 12, 2023

I confirm adding the jaxb-api dependency works with Java 11 and 17

@PabloThiele
Copy link
Collaborator

PabloThiele commented Jun 21, 2023

I confirm adding the jaxb-api dependency works with Java 11 and 17

@ebourg Could you please confirm and make a PR with that?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants