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了~.~

  • 相关阅读:
    在java中怎样获得当前日期时间
    java 常见异常
    线程中的current thread not owner异常错误
    hibernate 关于hbm.xml编写的总结
    java web 常见异常及解决办法
    初用Ajax
    JavaScript动态修改html组件form的action属性
    Ajax中文乱码的解决
    No repository found error in Installing ADT
    eclipse 安装 CDT
  • 原文地址:https://www.cnblogs.com/sylvia-liu/p/3805523.html
Copyright © 2011-2022 走看看