問題は、warとしてパッケージ化されたプロジェクトの依存関係の1つであるWEB-INF/lib内にある*.jarファイルを使用したいということです。これらのファイルをコンパイル時に使用したいと思います。出来ますか?
本質的にそれはこのように多かれ少なかれ見えます:
MyProject pom.xml:
<dependencies>
................
<dependency>
<groupId>a.b.c</groupId>
<artifactId>service</artifactId>
<version>1.0.0</version>
<type>war</type>
<scope>provided</scope>
</dependency>
...............
</dependencies>
service.war構造:
|
--WEB-INF
|
---lib
|
---lib1.jar <- I need this file on compile time for **MyProject**