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

  • 相关阅读:
    grep 和vim用法
    【python】初识函数
    【python】 文件相关操作
    【python】基础数据类型相关知识点补充和深浅拷贝
    【python】is和==的区别以及encode()和decode()
    python中的字典以及相关操作
    python列表元祖以及range
    python基本数据类型
    python基础逻辑运算
    了解Python与安装Python解释器
  • 原文地址:https://www.cnblogs.com/softidea/p/11466376.html
Copyright © 2011-2022 走看看