|
|
|
|
|
<?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>ruoyi</artifactId>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<version>3.7.0</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
<artifactId>ruoyi-admin</artifactId>
|
|
|
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
|
web服务入口
|
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
|
|
|
|
|
|
|
<base-common.version>1.0-SNAPSHOT</base-common.version>
|
|
|
|
|
|
<base-service.version>1.0-SNAPSHOT</base-service.version>
|
|
|
|
|
|
<base-config-redis.version>1.0-SNAPSHOT</base-config-redis.version>
|
|
|
|
|
|
<base-oauth-server.version>1.0-SNAPSHOT</base-oauth-server.version>
|
|
|
|
|
|
<spring-boot.version>2.1.10.RELEASE</spring-boot.version>
|
|
|
|
|
|
<mybatis-plus.version>3.3.0</mybatis-plus.version>
|
|
|
|
|
|
<mysql.version>8.0.16</mysql.version>
|
|
|
|
|
|
<lombok.version>1.18.10</lombok.version>
|
|
|
|
|
|
<common-lang.version>3.9</common-lang.version>
|
|
|
|
|
|
<common-io.version>2.6</common-io.version>
|
|
|
|
|
|
<spring-security-jwt.version>1.0.11.RELEASE</spring-security-jwt.version>
|
|
|
|
|
|
<common-collection.version>3.2.2</common-collection.version>
|
|
|
|
|
|
<guava.version>30.1.1-jre</guava.version>
|
|
|
|
|
|
<jackson-annotations.version>2.9.10</jackson-annotations.version>
|
|
|
|
|
|
<bitwalker.version>1.19</bitwalker.version>
|
|
|
|
|
|
<easyexcel.version>2.2.6</easyexcel.version>
|
|
|
|
|
|
<httpcomponents.version>4.5.2</httpcomponents.version>
|
|
|
|
|
|
<weixin-java-binarywang.version>4.6.0</weixin-java-binarywang.version>
|
|
|
|
|
|
<pinyin4j.version>2.5.0</pinyin4j.version>
|
|
|
|
|
|
<mail.version>1.4.7</mail.version>
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- spring-boot-devtools, 在部分情况可能导致 类型异常或者 linkerror -->
|
|
|
|
|
|
<!--<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
|
<optional>true</optional> <!– 表示依赖不会传递 –>
|
|
|
|
|
|
</dependency>-->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- swagger3-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
|
<artifactId>springfox-boot-starter</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
|
|
<version>1.6.2</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Mysql驱动包 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 核心模块-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<artifactId>ruoyi-framework</artifactId>
|
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 定时任务-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<artifactId>ruoyi-quartz</artifactId>
|
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 代码生成-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<artifactId>ruoyi-generator</artifactId>
|
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<artifactId>ruoyi-mall</artifactId>
|
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
|
<version>2.5.0</version>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 代码转换产生器 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
|
<artifactId>mapstruct</artifactId>
|
|
|
|
|
|
<version>1.4.2.Final</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- aliyun sms -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
|
|
<artifactId>dysmsapi20170525</artifactId>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
<version>${easyexcel.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
|
|
|
|
<artifactId>caffeine</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
|
|
<artifactId>weixin-java-cp</artifactId>
|
|
|
|
|
|
<version>${weixin-java-binarywang.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
|
|
<artifactId>weixin-java-miniapp</artifactId>
|
|
|
|
|
|
<version>4.6.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.belerweb</groupId>
|
|
|
|
|
|
<artifactId>pinyin4j</artifactId>
|
|
|
|
|
|
<version>${pinyin4j.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
|
<version>2.1.1.RELEASE</version>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
|
<version>3.1.0</version>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
|
|
<warName>${project.artifactId}</warName>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|