Maven映入第三方jar
Posted 笔记本
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven映入第三方jar相关的知识,希望对你有一定的参考价值。
<!--丰桥api依赖-->
<dependency>
<groupId>com.sf.csim.express</groupId>
<artifactId>express</artifactId>
<version>1.6</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/SF-CSIM-EXPRESS-SDK-V1.6.jar</systemPath>
</dependency>
<!--丰桥结束-->
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <attachClasses>true</attachClasses> <warSourceExcludes>**/WEB-INF</warSourceExcludes> <packagingExcludes>**/WEB-INF,**/resources</packagingExcludes> <webResources> <resource> <directory>../config/sql/</directory> <includes> <include>cskefu-mysql-slim.sql</include> </includes> </resource> <resource> <directory>src/main/resources/lib</directory> <targetPath>WEB-INF/lib/</targetPath> <includes> <include>**/*.jar</include> </includes> </resource> </webResources> </configuration> <version>2.1.1</version> </plugin>
<modelVersion>4.0.0</modelVersion>
<groupId>com.chatopera.cc</groupId>
<artifactId>contact-center</artifactId>
<version>3.9.0</version>
<packaging>war</packaging>
<name>contact-center</name>
<description>Chatopera Contact Center,多媒体呼叫中心,下一代呼叫中心</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
以上是关于Maven映入第三方jar的主要内容,如果未能解决你的问题,请参考以下文章
如何在 pom.xml 中添加\安装到新创建\第三方 jar 的 maven 依赖项