如何自定义m2e-wtp部署?

时间:2015-07-09 09:22:31

标签: eclipse eclipse-wtp m2e-wtp

在我的项目中,我有一些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>

1 个答案:

答案 0 :(得分:1)

这应该有效:

<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>