eclipse : Missing artifact com.sun:tools:jar:1.8
Opened this issue · 5 comments
Deleted user commented
kwek20 commented
Hello @wonkytonky2
Can you confirm to me that your eclipse is pointing to a JDK (and not a JRE), and that the JDK contains tools.jar?
Deleted user commented
kwek20 commented
@wonkytonky2
Could you clone the following repository, and test if it compiles?
https://github.com/iotaledger/java-md-doclet
In the pom.xml, theres a profiles section on the bottom. Maybe I need to add/change the path for windows.
zero24x commented
hello,
@kwek20 i ran into the same error message, i was able to clone the mentioned repo above and compile it (maven clean compile package install), please try to merge the fix you made so we can compile again, thanks!
edit: if i change my pom.xml like this (force newer version of java-md-doclet) the error disappears:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.iotaledger</groupId>
<artifactId>java-md-doclet</artifactId>
<version>2.1.3</version>
</dependency>
</dependencies>
</dependencyManagement>