排除模块

如果由于某种原因需要排除在项目的 pom 中声明的依赖项,则可以按如下方式使用排除标志:

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-ear-plugin</artifactId>
        <version>3.2.0</version>
        <configuration>
           [...]
           <modules>
             <webModule>
               <groupId>artifactGroupId</groupId>
               <artifactId>artifactId</artifactId>
               <excluded>true</excluded>
             </webModule>
          </modules>
        </configuration>
      </plugin>
    </plugins>
  </build>