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

Modify maven-javadoc-plugin configuration #1180

Open
btootomoyuk opened this issue Aug 22, 2022 · 0 comments
Open

Modify maven-javadoc-plugin configuration #1180

btootomoyuk opened this issue Aug 22, 2022 · 0 comments

Comments

@btootomoyuk
Copy link
Contributor

Description

javadoc does not work on Java 11.0.2, see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=920020

It says that maven-javadoc-plugin does not work, but we have confirmed that it works with the latest java11/17, although with a warning, so we will consider whether this setting is necessary.

terasoluna-gfw-ommon-libraries/pom.xml

  <profiles>
    <profile>
      <id>jdk11</id>
      <activation>
        <jdk>11</jdk>
      </activation>
      <properties>
        <!-- coverall 4.3.0 or previous version does not work on Java 11, see https://github.com/trautonen/coveralls-maven-plugin/issues/112 -->
        <coveralls.skip>true</coveralls.skip>
        <!-- javadoc does not work on Java 11.0.2, see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=920020 -->
        <maven.javadoc.skip>true</maven.javadoc.skip>
      </properties>
    </profile>
  </profiles>

Possible Solution

Consider whether the setting is necessary, and if not, delete it.

Affect versions

  • 5.x.x.RELEASE

Issue links

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

No branches or pull requests

1 participant