353 lines
13 KiB
XML
353 lines
13 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>
|
|
|
|
<groupId>com.easyink</groupId>
|
|
<artifactId>easyink</artifactId>
|
|
<version>3.1.0</version>
|
|
|
|
<name>easyink</name>
|
|
<description>企业微信管理系统</description>
|
|
|
|
<properties>
|
|
<springboot.version>2.3.7.RELEASE</springboot.version>
|
|
<easyink.version>3.1.0</easyink.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>1.8</java.version>
|
|
<!-- <mybatis.boot.version>1.3.2</mybatis.boot.version>-->
|
|
<druid.version>1.1.14</druid.version>
|
|
<bitwalker.version>1.19</bitwalker.version>
|
|
<kaptcha.version>2.3.2</kaptcha.version>
|
|
<pagehelper.boot.version>1.3.0</pagehelper.boot.version>
|
|
<fastjson.version>1.2.83</fastjson.version>
|
|
<oshi.version>3.9.1</oshi.version>
|
|
<commons.io.version>2.5</commons.io.version>
|
|
<commons.fileupload.version>1.3.3</commons.fileupload.version>
|
|
<poi.version>3.17</poi.version>
|
|
<velocity.version>1.7</velocity.version>
|
|
<jwt.version>0.9.0</jwt.version>
|
|
<forest.version>1.5.0-RC7</forest.version>
|
|
<lombok.version>1.18.20</lombok.version>
|
|
<reflectasm.version>1.11.9</reflectasm.version>
|
|
<hutool.version>5.4.1</hutool.version>
|
|
<zxing.version>3.3.3</zxing.version>
|
|
<mybatis-plus.version>3.4.0</mybatis-plus.version>
|
|
<vertx.version>4.0.0</vertx.version>
|
|
<netty-version>4.1.49.Final</netty-version>
|
|
<jaxb.version>2.3.1</jaxb.version>
|
|
<jsqlparser.version>4.0</jsqlparser.version>
|
|
<knife4j.version>3.0.2</knife4j.version>
|
|
<knife4j.annotations.version>1.5.22</knife4j.annotations.version>
|
|
<com.ofpay.logback-mdc-ttl.version>1.0.2</com.ofpay.logback-mdc-ttl.version>
|
|
<net.logstash.logback.logstash-logback-encoder.version>6.4
|
|
</net.logstash.logback.logstash-logback-encoder.version>
|
|
<ttl.version>2.14.0</ttl.version>
|
|
<commons.lang.version>2.6</commons.lang.version>
|
|
</properties>
|
|
|
|
<!-- 依赖声明 -->
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>transmittable-thread-local</artifactId>
|
|
<version>${ttl.version}</version>
|
|
</dependency>
|
|
<!--MDC线程传递增强-->
|
|
<dependency>
|
|
<groupId>com.ofpay</groupId>
|
|
<artifactId>logback-mdc-ttl</artifactId>
|
|
<version>${com.ofpay.logback-mdc-ttl.version}</version>
|
|
</dependency>
|
|
<!--日志json格式化工具-->
|
|
<dependency>
|
|
<groupId>net.logstash.logback</groupId>
|
|
<artifactId>logstash-logback-encoder</artifactId>
|
|
<version>${net.logstash.logback.logstash-logback-encoder.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-bom</artifactId>
|
|
<version>${netty-version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
|
|
<!-- SpringBoot的依赖配置-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>${springboot.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
|
|
<!--阿里数据库连接池 -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
<version>${druid.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 解析客户端操作系统、浏览器等 -->
|
|
<dependency>
|
|
<groupId>eu.bitwalker</groupId>
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
<version>${bitwalker.version}</version>
|
|
</dependency>
|
|
|
|
<!-- pagehelper 分页插件 -->
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
<version>${pagehelper.boot.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- 获取系统信息 -->
|
|
<dependency>
|
|
<groupId>com.github.oshi</groupId>
|
|
<artifactId>oshi-core</artifactId>
|
|
<version>${oshi.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
<version>${knife4j.version}</version>
|
|
<exclusions>
|
|
<!-- 排除版本冲突的guava -->
|
|
<exclusion>
|
|
<artifactId>guava</artifactId>
|
|
<groupId>com.google.guava</groupId>
|
|
</exclusion>
|
|
<!-- 排除版本冲突的swagger-annotations -->
|
|
<exclusion>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<groupId>io.swagger</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<version>${knife4j.annotations.version}</version>
|
|
</dependency>
|
|
|
|
<!--<!– swagger2-UI–>-->
|
|
<!--<dependency>-->
|
|
<!--<groupId>io.springfox</groupId>-->
|
|
<!--<artifactId>springfox-swagger-ui</artifactId>-->
|
|
<!--<version>${swagger.version}</version>-->
|
|
<!--</dependency>-->
|
|
|
|
<!--io常用工具类 -->
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons.io.version}</version>
|
|
</dependency>
|
|
|
|
<!--文件上传工具类 -->
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>${commons.fileupload.version}</version>
|
|
</dependency>
|
|
|
|
<!-- excel工具 -->
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>${poi.version}</version>
|
|
</dependency>
|
|
|
|
<!--velocity代码生成使用模板 -->
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity</artifactId>
|
|
<version>${velocity.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 阿里JSON解析器 -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>${fastjson.version}</version>
|
|
</dependency>
|
|
|
|
<!--Token生成与解析-->
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt</artifactId>
|
|
<version>${jwt.version}</version>
|
|
</dependency>
|
|
|
|
<!--验证码 -->
|
|
<dependency>
|
|
<groupId>com.github.penggle</groupId>
|
|
<artifactId>kaptcha</artifactId>
|
|
<version>${kaptcha.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 定时任务-->
|
|
<dependency>
|
|
<groupId>com.easyink</groupId>
|
|
<artifactId>easyink-quartz</artifactId>
|
|
<version>${easyink.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 核心模块-->
|
|
<dependency>
|
|
<groupId>com.easyink</groupId>
|
|
<artifactId>easyink-framework</artifactId>
|
|
<version>${easyink.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 通用工具-->
|
|
<dependency>
|
|
<groupId>com.easyink</groupId>
|
|
<artifactId>easyink-common</artifactId>
|
|
<version>${easyink.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- 企业微信模块-->
|
|
<dependency>
|
|
<groupId>com.easyink</groupId>
|
|
<artifactId>easyink-wecom</artifactId>
|
|
<version>${easyink.version}</version>
|
|
</dependency>
|
|
|
|
<!--forset-->
|
|
<dependency>
|
|
<groupId>com.dtflys.forest</groupId>
|
|
<artifactId>forest-spring-boot-starter</artifactId>
|
|
<version>${forest.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.esotericsoftware/reflectasm -->
|
|
<dependency>
|
|
<groupId>com.esotericsoftware</groupId>
|
|
<artifactId>reflectasm</artifactId>
|
|
<version>${reflectasm.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.zxing</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>${zxing.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>${mybatis-plus.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.vertx</groupId>
|
|
<artifactId>vertx-core</artifactId>
|
|
<version>${vertx.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.vertx</groupId>
|
|
<artifactId>vertx-web-client</artifactId>
|
|
<version>${vertx.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<artifactId>jaxb-api</artifactId>
|
|
<version>${jaxb.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
<version>${springboot.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.jsqlparser</groupId>
|
|
<artifactId>jsqlparser</artifactId>
|
|
<version>${jsqlparser.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<modules>
|
|
<module>easyink-admin</module>
|
|
<module>easyink-framework</module>
|
|
<module>easyink-quartz</module>
|
|
<module>easyink-common</module>
|
|
<module>easyink-wecom</module>
|
|
</modules>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>public</id>
|
|
<name>aliyun nexus</name>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>public</id>
|
|
<name>aliyun nexus</name>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
</project> |