127 lines
4.2 KiB
XML
127 lines
4.2 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.whdc</groupId>
|
||
<artifactId>fxkh-txl-parent</artifactId>
|
||
<version>1.0</version>
|
||
<relativePath>../poms/dependency.xml</relativePath>
|
||
</parent>
|
||
|
||
<artifactId>fxkh-txl-legacy</artifactId>
|
||
<packaging>jar</packaging>
|
||
<description>防汛抗旱通讯录API - 启动模块</description>
|
||
|
||
<dependencies>
|
||
<!-- Web Module -->
|
||
<dependency>
|
||
<groupId>com.whdc</groupId>
|
||
<artifactId>fxkh-txl-sms</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Spring Boot -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter</artifactId>
|
||
</dependency>
|
||
|
||
<!-- MyBatis Plus -->
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.github.jeffreyning</groupId>
|
||
<artifactId>mybatisplus-plus</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Database -->
|
||
<dependency>
|
||
<groupId>com.dameng</groupId>
|
||
<artifactId>DmJdbcDriver18</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.dameng</groupId>
|
||
<artifactId>DmDialect-for-hibernate4.0</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>druid</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Redis -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-pool2</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Cache -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-cache</artifactId>
|
||
</dependency>
|
||
|
||
<!-- PDF Generation -->
|
||
<dependency>
|
||
<groupId>com.itextpdf</groupId>
|
||
<artifactId>kernel</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.itextpdf</groupId>
|
||
<artifactId>io</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.itextpdf</groupId>
|
||
<artifactId>forms</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.itextpdf</groupId>
|
||
<artifactId>layout</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.itextpdf</groupId>
|
||
<artifactId>svg</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
|
||
<dependency>
|
||
<groupId>cn.dev33</groupId>
|
||
<artifactId>sa-token-spring-boot-starter</artifactId>
|
||
</dependency><!-- Sa-Token 整合 Redis (使用 jackson 序列化方式) -->
|
||
<dependency>
|
||
<groupId>cn.dev33</groupId>
|
||
<artifactId>sa-token-dao-redis-jackson</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.github.binarywang</groupId>
|
||
<artifactId>weixin-java-miniapp</artifactId>
|
||
</dependency>
|
||
<!-- Dev Tools -->
|
||
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
<!-- <plugin>-->
|
||
<!-- <groupId>org.springframework.boot</groupId>-->
|
||
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
|
||
<!-- <executions>-->
|
||
<!-- <execution>-->
|
||
<!-- <goals>-->
|
||
<!-- <goal>repackage</goal>-->
|
||
<!-- </goals>-->
|
||
<!-- </execution>-->
|
||
<!-- </executions>-->
|
||
<!-- </plugin>-->
|
||
</plugins>
|
||
</build>
|
||
</project> |