123 lines
3.9 KiB
XML
123 lines
3.9 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">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl</artifactId>
|
||
<version>3.8.7</version>
|
||
</parent>
|
||
|
||
<artifactId>zhwl-app</artifactId>
|
||
|
||
<properties>
|
||
<maven.compiler.source>8</maven.compiler.source>
|
||
<maven.compiler.target>8</maven.compiler.target>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
</properties>
|
||
<dependencies>
|
||
<!-- 引入thymeleaf依赖 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 通用工具-->
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-common</artifactId>
|
||
</dependency>
|
||
<!-- swagger3-->
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-boot-starter</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>commons-httpclient</groupId>
|
||
<artifactId>commons-httpclient</artifactId>
|
||
<version>3.1</version>
|
||
</dependency>
|
||
|
||
<!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
|
||
<dependency>
|
||
<groupId>io.swagger</groupId>
|
||
<artifactId>swagger-models</artifactId>
|
||
<version>1.6.2</version>
|
||
</dependency>
|
||
|
||
<!-- 核心模块-->
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-ticket-order</artifactId>
|
||
</dependency>
|
||
|
||
<!-- BUSINESS-->
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-cms</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.jsoup</groupId>
|
||
<artifactId>jsoup</artifactId>
|
||
<version>1.10.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-payment</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-guide</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-report</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 微信小程序第三方工具包 -->
|
||
<dependency>
|
||
<groupId>com.github.binarywang</groupId>
|
||
<artifactId>wx-java-miniapp-spring-boot-starter</artifactId>
|
||
<version>${weixin.java.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-printset</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-wcsc</artifactId>
|
||
</dependency>
|
||
|
||
<!--客户管理-->
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-customer</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-prepaid-card</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-statistics</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-hotel-homestay</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-base</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zhwl</groupId>
|
||
<artifactId>zhwl-hotel-homestay-order</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project>
|