美文网首页
maven问题1:[WARNING] 'build.plugin

maven问题1:[WARNING] 'build.plugin

作者: mutang | 来源:发表于2020-07-15 23:32 被阅读0次

转载:https://blog.csdn.net/huwei0518/article/details/45054803

配置maven compiler的时候加上对应的Servlet版本号即可解决。

    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <!-- 与Servlet版本对应 -->
    <span style="color:#FF0000;"><version>3.1</version></span>
    <configuration>
        <source>1.8</source>
        <target>1.8</target>
        <encoding>UTF-8</encoding>
    </configuration>
</plugin>

相关文章

网友评论

      本文标题:maven问题1:[WARNING] 'build.plugin

      本文链接:https://www.haomeiwen.com/subject/kevshktx.html