Where to get the tools.jar to use with the Java 8 jdk early release

后端 未结 13 1451
终归单人心
终归单人心 2020-12-31 09:32

Where to get tools.jar for Java 8 JDK early release? Without it, my Java 1.8 Maven pom based projects in Netbeans will not compile.

The Java 8 early release is set in

13条回答
  •  半阙折子戏
    2020-12-31 10:07

    Some JDK packages contain just the Java Runtime Environment.

    So for instance in Fedora, Oracle Linux, RHEL, CentOS java-1.8.0-openjdk package contains just the JRE. If you want the development tools, then install the java-1.8.0-openjdk-devel package instead.

    And in Debian/Ubuntu openjdk-8-jre package contains just the JRE. If you want the development tools, then install the openjdk-8-jdk package instead.

提交回复
热议问题