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>

  

猜你喜欢

转载自www.cnblogs.com/huangpeideng/p/12404902.html