gpt4 book ai didi

java - 如何禁止ant在iterm2中输出警告信息?

转载 作者:行者123 更新时间:2023-12-01 09:51:19 24 4
gpt4 key购买 nike

我使用ant在iterm2中构建和部署一个java web项目,现在我遇到了问题。当我编译项目时,有很多全屏警告,我无法读取ant报告的错误。这是我的 ant javac 任务定义:

<echo message="begin compile..." />  
<javac srcdir="${src.dir}" destdir="${build.dir}"
includeantruntime="false" nowarn="on"
source="1.7" target="1.7" deprecation="true" debug="true"
encoding="UTF-8" classpathref="project.classpath">
<compilerarg line="-Xlint:unchecked" />
</javac>
<copy todir="${build.dir}">
<fileset dir="${src.dir}">
<include name="**/*.xml" />
<include name="**/*.properties" />
<include name="**/*.sql" />
</fileset>
</copy>
<echo message="end compile..." />

如何告诉 ant 不显示警告而只显示错误?

最佳答案

要禁用多种警告,请替换...

<compilerarg line="-Xlint:unchecked" />

...与...

<compilerarg value="-Xlint:none" />

有关未经检查的转换的警告无法从命令行禁用。相反,您必须在 Java 代码中发生未经检查的转换的每个位置手动添加 @SuppressWarnings 注释。

关于java - 如何禁止ant在iterm2中输出警告信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37581123/

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