zoukankan      html  css  js  c++  java
  • maven warnning 'build.plugins.plugin.version' is missing

    裝完maven后,package或clean时出错:
    [WARN]
    [WARN] Some problems were encountered while building the effective model 
     [WARN] 'build.plugins.plugin.version' is missing fororg.apache.maven.plugins:maven.compiler.plugin
    It is highly recommended to fix these problems because they threaten the stability of your build.
    For this reason, future Maven versions might no longer support building such malformed projects.

    org.apache.maven.plugins:maven.compiler.plugin是一个plugin。可以通过“Add Denpendency”来添加。

    在pom.xml中添加新的dependency:

     <dependency>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>2.1</version>
    <type>maven-plugin</type>
    </dependency>
    在build中添加:
    <build>
    <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven.compiler.plugin</artifactId>
    <configuration>
    <source>1.5</source>
    <target>1.5</target>
    <verbal>true</verbal>
    </configuration>
    </plugin>
    </plugins>
    </build>
    </project>

    但是仍然有个错误,错误信息:build.plugins.plugin.version
    可以看到,在pom.xml里面的<build>下面,沒有<version>。因此要多加一个version:
    <build>
    <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven.compiler.plugin</artifactId>
    <version>2.1</version>
    <configuration>
    <source>1.5</source>
    <target>1.5</target>
    <verbal>true</verbal>
    </configuration>
    </plugin>
    </plugins>
    </build>
    </project>

    好,解决问题。
    ————————————————
    版权声明:本文为CSDN博主「白杨树」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/hongchangfirst/article/details/7527063

    <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-jar-plugin -->
    <dependency>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>3.1.2</version>
    </dependency>

    https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-jar-plugin/3.1.2

  • 相关阅读:
    Tomcat December 31,2019
    XML
    Java
    mysql8.0.16安装(补) September 24,2019
    乱码中的编码和解码
    idea优化
    新版web.xml
    重定向和请求转发
    web下载文件设置的头信息
    响应状态码
  • 原文地址:https://www.cnblogs.com/softidea/p/11466376.html
Copyright © 2011-2022 走看看