gpt4 book ai didi

java - 有条件地添加tools.jar

转载 作者:行者123 更新时间:2023-12-02 10:40:21 26 4
gpt4 key购买 nike

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

最佳答案

您应该使用 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>

关于java - 有条件地添加tools.jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52960963/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com