zoukankan      html  css  js  c++  java
  • maven-compiler-plugin 版本错误解决方法

    项目执行Maven build后出现WARNING提示。报如信息如下,根据报错信息猜测是maven-compiler-plugin的版本信息问题

    [WARNING]  
    [WARNING] Some problems were encountered while building the effective model for com.xxx.xxx:xxxx:jar:0.0.1-SNAPSHOT  
    [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 16, column 12  
    [WARNING]  
    [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.  
    [WARNING]  
    [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.  
    [WARNING]

    POM.xml中maven-compiler-plugin插件信息如下

    <plugins>    
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>    
            <configuration>    
                <source>1.6</source>    
                <target>1.6</target>    
            </configuration>    
        </plugin>    
    </plugins>

    修改POM.xml,增加maven-compiler-plugin插件版本信息,如下

    <plugins>    
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>  
            <version>2.3.2</version>  
            <configuration>    
                <source>1.6</source>    
                <target>1.6</target>    
            </configuration>    
        </plugin>    
    </plugins>

    Maven clean一下再编译时一切OK了~.~

  • 相关阅读:
    文件读写和进度条
    复选框选择变化(可以演化成简单的字符串拼接)
    读取文本方式的简单登录
    计算字符出现次数
    判断系统版本号
    DataTable合并
    获取单元格值的数据类型
    struts2 日期标签
    jsp获取枚举的值
    java web项目修改项目名称
  • 原文地址:https://www.cnblogs.com/sylvia-liu/p/3805523.html
Copyright © 2011-2022 走看看