当前,我在pom依赖项中包含tools.jar。在JDK11中,需要将其从依赖项中删除。请仅在Java版本小于9的情况下帮助我将tools.jar包含在依赖项中,否则它应该出现在pom中。
答案 0 :(得分:1)
您应该使用Maven配置文件(http://maven.apache.org/guides/introduction/introduction-to-profiles.html)
<profiles>
<profile>
<id>java8</id>
<activation>
<jdk>1.8</jdk>
</activation>
<dependencies>
...
</dependencies>
</profile>
</profiles>