<?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>
|
<groupId>com.xcong</groupId>
|
<artifactId>xc-video</artifactId>
|
<version>2.0</version>
|
<name>xc-video</name>
|
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.2.5.RELEASE</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
|
<properties>
|
<java.version>1.8</java.version>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<mybatis.plus.version>3.3.1</mybatis.plus.version>
|
<swagger.ui>2.9.2</swagger.ui>
|
<tomcat.version>9.0.31</tomcat.version>
|
<hutool.version>5.3.1</hutool.version>
|
<mapstruct.version>1.3.1.Final</mapstruct.version>
|
<ijapy.version>2.7.8</ijapy.version>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>org.mapstruct</groupId>
|
<artifactId>mapstruct</artifactId>
|
<version>${mapstruct.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>${hutool.version}</version>
|
</dependency>
|
|
<!-- Spring系列 -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-cache</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-actuator</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
</dependency>
|
<!-- redis连接池 -->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-pool2</artifactId>
|
</dependency>
|
|
<!-- 任务调度 -->
|
<dependency>
|
<groupId>org.quartz-scheduler</groupId>
|
<artifactId>quartz</artifactId>
|
</dependency>
|
|
<!-- MyBatis增强插件 -->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>${mybatis.plus.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-generator</artifactId>
|
<version>${mybatis.plus.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
<version>3.0.0</version>
|
</dependency>
|
|
<!-- freemaker模板引擎,用于定义代码生成模板 -->
|
<dependency>
|
<groupId>org.freemarker</groupId>
|
<artifactId>freemarker</artifactId>
|
<version>2.3.28</version>
|
</dependency>
|
|
<!-- 控制台 SQL日志打印插件 -->
|
<dependency>
|
<groupId>p6spy</groupId>
|
<artifactId>p6spy</artifactId>
|
<version>3.8.1</version>
|
</dependency>
|
|
<!-- mysql驱动 -->
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<scope>runtime</scope>
|
</dependency>
|
|
<!-- shiro -->
|
<dependency>
|
<groupId>org.apache.shiro</groupId>
|
<artifactId>shiro-spring</artifactId>
|
<version>1.4.2</version>
|
</dependency>
|
<dependency>
|
<groupId>org.crazycake</groupId>
|
<artifactId>shiro-redis</artifactId>
|
<version>3.2.3</version>
|
<!-- 排除最新3.1.0版本,引用2.9.0版本,https://github.com/alexxiyang/shiro-redis/issues/113 -->
|
<exclusions>
|
<exclusion>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
<version>2.9.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.theborakompanioni</groupId>
|
<artifactId>thymeleaf-extras-shiro</artifactId>
|
<version>2.0.0</version>
|
</dependency>
|
|
<!-- IP定位插件 -->
|
<dependency>
|
<groupId>org.lionsoul</groupId>
|
<artifactId>ip2region</artifactId>
|
<version>1.7.2</version>
|
</dependency>
|
|
<!-- commons工具 -->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.6</version>
|
</dependency>
|
|
<!-- google guava -->
|
<dependency>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
<version>27.0-jre</version>
|
</dependency>
|
|
<!-- Excel导入导出插件 -->
|
<dependency>
|
<groupId>com.wuwenze</groupId>
|
<artifactId>ExcelKit</artifactId>
|
<version>2.0.72</version>
|
</dependency>
|
|
<!-- lombok -->
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<optional>true</optional>
|
</dependency>
|
|
<!-- fastjson -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.70</version>
|
</dependency>
|
|
<!-- 验证码生成插件 -->
|
<dependency>
|
<groupId>com.github.whvcse</groupId>
|
<artifactId>easy-captcha</artifactId>
|
<version>1.6.2</version>
|
</dependency>
|
|
<!-- xss过滤 -->
|
<dependency>
|
<groupId>org.jsoup</groupId>
|
<artifactId>jsoup</artifactId>
|
<version>1.12.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>${swagger.ui}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>${swagger.ui}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>xml-apis</groupId>
|
<artifactId>xml-apis</artifactId>
|
<version>1.4.01</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.github.javen205</groupId>
|
<artifactId>IJPay-AliPay</artifactId>
|
<version>${ijapy.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.sunlight</groupId>
|
<artifactId>tron-sdk</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
<scope>system</scope>
|
<systemPath>${basedir}/lib/tron-sdk-1.0.jar</systemPath>
|
</dependency>
|
|
<dependency>
|
<groupId>org.tron.trident</groupId>
|
<artifactId>abi</artifactId>
|
<version>0.3.0</version>
|
<scope>system</scope>
|
<systemPath>${basedir}/lib/abi-0.3.0.jar</systemPath>
|
</dependency>
|
<dependency>
|
<groupId>org.tron.trident</groupId>
|
<artifactId>utils</artifactId>
|
<version>0.3.0</version>
|
<scope>system</scope>
|
<systemPath>${basedir}/lib/utils-0.3.0.jar</systemPath>
|
</dependency>
|
|
<dependency>
|
<groupId>org.tron.trident</groupId>
|
<artifactId>core</artifactId>
|
<version>0.3.0</version>
|
<scope>system</scope>
|
<systemPath>${basedir}/lib/core-0.3.0.jar</systemPath>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
</dependency>
|
|
<!-- jave 核心依赖 -->
|
<dependency>
|
<groupId>ws.schild</groupId>
|
<artifactId>jave-core</artifactId>
|
<version>2.4.6</version>
|
</dependency>
|
|
<!-- 根据不同操作系统引入不同FFmpeg包 -->
|
|
<!-- window32位 FFmpeg -->
|
<dependency>
|
<groupId>ws.schild</groupId>
|
<artifactId>jave-native-win32</artifactId>
|
<version>2.4.6</version>
|
</dependency>
|
<!-- window64位 FFmpeg -->
|
<dependency>
|
<groupId>ws.schild</groupId>
|
<artifactId>jave-native-win64</artifactId>
|
<version>2.4.6</version>
|
</dependency>
|
<!-- linux64位 FFmpeg -->
|
<dependency>
|
<groupId>ws.schild</groupId>
|
<artifactId>jave-native-linux64</artifactId>
|
<version>2.4.6</version>
|
</dependency>
|
<!-- macos64位 FFmpeg -->
|
<dependency>
|
<groupId>ws.schild</groupId>
|
<artifactId>jave-native-osx64</artifactId>
|
<version>2.4.6</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<includeSystemScope>true</includeSystemScope>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<version>3.5.1</version>
|
<configuration>
|
<source>${java.version}</source>
|
<target>${java.version}</target>
|
<annotationProcessorPaths>
|
<path>
|
<groupId>org.mapstruct</groupId>
|
<artifactId>mapstruct-processor</artifactId>
|
<version>${mapstruct.version}</version>
|
</path>
|
<path>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>${lombok.version}</version>
|
</path>
|
</annotationProcessorPaths>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|