79539415

Date: 2025-03-27 16:04:59
Score: 0.5
Natty:
Report link

Possible solutions:

  1. Custom scope:

    Select "Custom scope" in the "Generate Javadoc..." settings, you restrict Javadoc to processing only your project's source code. This isolates Javadoc from the conflicting external library dependencies.

  2. "-exclude" flag:

    The "-exclude" flag, when added to the "Command line arguments" field, provides control over which packages are excluded.

    For example, "-exclude org.jetbrains.kotlinx.*" prevents Javadoc from processing any packages within the "org.jetbrains.kotlinx" namespace.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Elizabeth