My java_home is C:\Program Files\Java\jdk-13.0.2
When I run mvn install in cmd I get output as:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-javadoc-plugin:2.10.1:jar (module-javadoc)
on project ignite-tools: MavenReportException: Error while creating archive:
[ERROR] Exit code: 1 -
C:\ignite\modules\tools\src\main\java\org\apache\ignite\tools\javadoc\IgniteLinkTaglet.java:20: error: package com.sun.javadoc does not exist
What is wrong ?
Apache Ignite 2.7.x only supports building under Java 8.
it shows this error java.lang.UnsupportedClassVersionError: org/apache/ignite/tools/javadoc/IgniteLinkTaglet has been compiled by a more recent version of the Java Runtime (class file version 53.0), this version of the Java Runtime only recognizes class file versions up to 52.0
try doing mvn clean install first?
yeahhh.. nice it's working ..