如何将包含多个 jar 的外部文件夹添加到 Web 应用程序的 Maven 构建中?
How to add external folder that contains multiple jars into maven build for web application?
我正在使用 intellij
和 tomcat 服务器来部署我的 spring mvc 应用程序,我还有另一个第 3 方罐子 (10),我想添加它们war 文件,同时用 maven 打包,有没有办法告诉 maven -> 将所有这些 jars 包含在此文件夹中?
没有选项可以将每个 jar 都包含在一个文件夹中,如果您想从文件系统中包含单个 jar:
<dependency>
<groupId>sun.jdk</groupId>
<artifactId>tools</artifactId>
<version>1.5.0</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
ebay SDK 已上线bintray
<dependency>
<groupId>com.ebay</groupId>
<artifactId>sdk</artifactId>
<version>883</version>
<type>pom</type>
</dependency>
我正在使用 intellij
和 tomcat 服务器来部署我的 spring mvc 应用程序,我还有另一个第 3 方罐子 (10),我想添加它们war 文件,同时用 maven 打包,有没有办法告诉 maven -> 将所有这些 jars 包含在此文件夹中?
没有选项可以将每个 jar 都包含在一个文件夹中,如果您想从文件系统中包含单个 jar:
<dependency>
<groupId>sun.jdk</groupId>
<artifactId>tools</artifactId>
<version>1.5.0</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
ebay SDK 已上线bintray
<dependency>
<groupId>com.ebay</groupId>
<artifactId>sdk</artifactId>
<version>883</version>
<type>pom</type>
</dependency>