如何自定义 m2e-wtp 部署?

How to customize m2e-wtp deployment?

在我的项目中,我有一些 aar 依赖项。我不想将这些 aar 文件部署到 WEB-INF/lib 文件夹中。我想将它们部署在其他一些文件夹中。但是我找不到在哪里设置 m2e-wtp 插件来执行此操作。

我的 pom 文件是这样的:

<dependency>
  <groupId>my.group</groupId>
  <artifactId>my-soap</artifactId>
  <type>aar</type>
  <version>1.0.0</version>
</dependency>

这应该有效:

<plugin>
  <artifactId>maven-war-plugin</artifactId>
  <version>2.6</version>
  <configuration>
  <webResources>
    <webResource>
   <directory>${settings.localRepository}/my.group/my-soap/1.0.0/</directory>
    <targetPath>destination/folder</targetPath><!-- optional, will deploy at the root of the webapp by default-->
    <includes>
      <include>*.aar</include>
    </includes>
   </webResource>
  </webResources>
 </configuration>
</plugin>