有条件地添加tools.jar

时间:2018-10-24 04:08:37

标签: java maven java-11 tools.jar

当前,我在pom依赖项中包含tools.jar。在JDK11中,需要将其从依赖项中删除。请仅在Java版本小于9的情况下帮助我将tools.jar包含在依赖项中,否则它应该出现在pom中。

1 个答案:

答案 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>