Maven构建时告警提醒的处理

文章讲述了在使用Maven构建项目时遇到的编译警告,如过时API和未检查的操作警告。通过在pom.xml文件的maven-compiler-plugin配置中添加-Xlint参数,可以指定编译器忽略或处理这些警告。
摘要由CSDN通过智能技术生成

在采用Maven构建项目时,经常遇到如下告警提醒,虽然不影响构建结果,但是程序员的我们天生就是完美主义者,眼里容不得沙子。

一、 如果在编译时遇到如下错误,可以通过在pom文件的build标签中插件:maven-compiler-plugin

[WARNING] XxFilter.java: 某些输入文件使用或覆盖了已过时的 API。

[WARNING] XxFilter.java: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。

[WARNING] EventKafkaSender.java: 某些输入文件使用了未经检查或不安全的操作。

[WARNING] EventKafkaSender.java: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。

代码模板:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
            <configuration>
                <!-- 设置jre版本为 1.8 -->
                <source>1.8</source>
                <target>1.8</target>
                <!-- 设置编码为 UTF-8 -->
                <encoding>UTF-8</encoding>
            </configuration>
            <executions>
                <execution>
                    <id>default-compile</id>
                    <phase>compile</phase>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                    <configuration>
                        <!-- everything in target/generated-sources/** should be excluded from this check -->
                        <compilerArgs>
                            <arg>-Xlint:all,-rawtypes</arg>
                        </compilerArgs>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

IT 行者

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值