You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just tried to build the training ressources with mvn package and experienced the following error:
[INFO] hadoop-skeleton .................................... FAILURE [ 0.697 s]
…
[ERROR] Failed to execute goal on project hadoop-skeleton: Could not resolve dependencies for project de.dimajix.training:hadoop-skeleton:jar:1.0.0: Could not find artifact jdk.tools:jdk.tools:jar:1.8 at specified path /usr/lib/jvm/java-8-openjdk-amd64/jre/../lib/tools.jar -> [Help 1]
My local solution was to set JAVA_HOME to a directory of a JRE that is located within a JDK. Thereafter, $JAVA_HOME/../lib/tools.jar (.. seems to go from the inner JRE into the outer JDK directory) can be successfully resolved and the build works on my machine.
I encountered this error on Windows 10 (that has this JDK/JRE-structure) as well as in my Ubuntu shell (that does not have this JDK/JRE-structure and I would have to create a symlink to satisfy the implicit assumption).
I see two possible solutions here:
fix the resolution of tools.jar
document the dependency to a JRE that is located inside a JDK in the README.md.
Hope this helps you,
Stephan
The text was updated successfully, but these errors were encountered:
I just tried to build the training ressources with
mvn package
and experienced the following error:My local solution was to set
JAVA_HOME
to a directory of a JRE that is located within a JDK. Thereafter,$JAVA_HOME/../lib/tools.jar
(..
seems to go from the inner JRE into the outer JDK directory) can be successfully resolved and the build works on my machine.I encountered this error on Windows 10 (that has this JDK/JRE-structure) as well as in my Ubuntu shell (that does not have this JDK/JRE-structure and I would have to create a symlink to satisfy the implicit assumption).
I see two possible solutions here:
tools.jar
README.md
.Hope this helps you,
Stephan
The text was updated successfully, but these errors were encountered: