1

私のプロジェクトには、いくつかの 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>
4

1 に答える 1

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>
于 2016-01-02T19:41:12.737 に答える