管理启动项目中maven-assembly-plugin的2.2-beta-5版本。

问题描述 投票:0回答:1

如果我基于 maven-archetype-quickstart 版本 1.1,并加 maven-assembly-plugin 的特定版本,我在我的IDE(Eclipse)中被告知一个警告:"overriding managed version 2.2-beta-5 for maven-assembly-plugin"。"覆盖maven -assembly -plugin的管理版本2.2 -beta -5"。这个继承的插件版本是从哪里来的?难道我唯一的选择是设置hacky标签的 <!--$NO-MVN-MAN-VER$-->? 该 pom.xml 是下面的。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>org.foo.project</groupId>
  <artifactId>foobar</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>foobar</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>3.1.0</version>
      </plugin>
    </plugins>
  </build>
</project>
eclipse maven maven-plugin maven-assembly-plugin
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.