问题是我想使用位于我的项目依赖项之一的WEB-INF/lib内的*.jar文件,这些依赖项被打包为 war。我想在编译时使用这些文件。是否可以?
基本上它看起来或多/少是这样的:
我的项目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**