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

  • 相关阅读:
    U盘支持启动windows和Linux
    emacs安装
    npm 安装指定的第三方包
    npm安装第三方包
    npm 安装淘宝镜像
    ssm 环境搭建
    gitBook安装简介
    git 博客搭建
    git 多人开发
    git ssh提交
  • 原文地址:https://www.cnblogs.com/softidea/p/11466376.html
Copyright © 2011-2022 走看看