We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Upon opening PRs to main the Maven CI github action fails with the below error
Error: Failed to execute goal org.apache.maven.plugins:maven-javadoc-plugin:2.9.1:jar (attach-javadocs) on project aem-guides-wknd.core: MavenReportException: Error while creating archive: Error: Exit code: 1 - /home/runner/work/aem-guides-wknd/aem-guides-wknd/core/src/main/java/com/adobe/aem/guides/wknd/core/models/package-info.java:16: error: unknown tag: org.osgi.annotation.versioning.Version Error: @org.osgi.annotation.versioning.Version("2.1.0") Error: ^ Error: Error: Command line was: /opt/hostedtoolcache/jdk/11.0.17/x64/bin/javadoc @options @packages Error: Error: Refer to the generated Javadoc files in '/home/runner/work/aem-guides-wknd/aem-guides-wknd/core/target/apidocs' dir. Error:
Root Cause is [Javadoc does not handle package annotations correctly on package-info.java] (https://bugs.openjdk.org/browse/JDK-8222091)
To fix above issue PR openjdk/jdk11u-dev#1475 is raised but not merged and released..
Work Around is to skip the Java Version by adding empty JavaDoc block like
/** */@org.osgi.annotation.versioning.Version("2.1.0") package com.adobe.aem.guides.wknd.core.models;
The text was updated successfully, but these errors were encountered:
SachinMali
No branches or pull requests
Upon opening PRs to main the Maven CI github action fails with the below error
Root Cause is [Javadoc does not handle package annotations correctly on package-info.java]
(https://bugs.openjdk.org/browse/JDK-8222091)
To fix above issue PR openjdk/jdk11u-dev#1475 is raised but not merged and released..
Work Around is to skip the Java Version by adding empty JavaDoc block like
The text was updated successfully, but these errors were encountered: