93 lines
3.1 KiB
XML
93 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>cm-cloud</artifactId>
|
|
<groupId>com.cm</groupId>
|
|
<version>1.0.2-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>cloud-common-msbh5</artifactId>
|
|
<description>蒙速办H5应用认证</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ink.wgink</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<version>3.1.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>inspur.auth</groupId>
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
<version>1.59</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/bcprov-jdk15on-1.59.jar</systemPath>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>inspur.auth</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.9</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/commons-codec-1.9.jar</systemPath>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>inspur.auth</groupId>
|
|
<artifactId>inspur-json</artifactId>
|
|
<version>1.0.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/json-20180813.jar</systemPath>
|
|
</dependency>
|
|
|
|
<!--<dependency>
|
|
<groupId>inspur.auth</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>3.14.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/okhttp-3.14.0.jar</systemPath>
|
|
</dependency>-->
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>3.14.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>inspur.auth</groupId>
|
|
<artifactId>okio</artifactId>
|
|
<version>1.17.2</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/okio-1.17.2.jar</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>lib</directory>
|
|
<targetPath>/BOOT-INF/lib/</targetPath>
|
|
<includes>
|
|
<include>**/*.jar</include>
|
|
</includes>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<includes>
|
|
<!--包含文件夹以及子文件夹下所有资源-->
|
|
<include>**/*.*</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
</project> |