停用 maven-ear-plugin

Deactivate maven-ear-plugin

目标 ear:ear 会自动附加到包装阶段,如果有人建立耳朵。我想消除它。不幸的是,它没有 skip 参数。

我怎样才能 "deattach" 一个阶段的目标?

找到执行id(default-ear)后,我成功做了以下操作:

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-ear-plugin</artifactId>
    <executions>
      <execution>
        <id>default-ear</id>
        <phase>none</phase>
      </execution>
    </executions>
  </plugin>