|
|
<?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.kiisoo</groupId>
|
|
|
<artifactId>ic</artifactId>
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
<packaging>jar</packaging>
|
|
|
<name>youke</name>
|
|
|
|
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
<version>2.1.6.RELEASE</version>
|
|
|
<relativePath/>
|
|
|
<!-- 1-->
|
|
|
</parent>
|
|
|
|
|
|
<properties>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
<java.version>1.8</java.version>
|
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
|
<!-- <dependency>-->
|
|
|
<!-- <groupId>com.kiisoo.aegis</groupId>-->
|
|
|
<!-- <artifactId>aegis-common</artifactId>-->
|
|
|
<!-- <version>0.5.0-SNAPSHOT</version>-->
|
|
|
<!-- <exclusions>-->
|
|
|
<!-- <exclusion>-->
|
|
|
<!-- <artifactId>slf4j-log4j12</artifactId>-->
|
|
|
<!-- <groupId>org.slf4j</groupId>-->
|
|
|
<!-- </exclusion>-->
|
|
|
<!-- </exclusions>-->
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
<version>3.6</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- spring-boot web -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web-services</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>mysql</groupId>
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
<version>5.1.45</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
<version>3.2.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
<artifactId>mybatis-plus-generator</artifactId>
|
|
|
<version>3.3.1</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.freemarker</groupId>
|
|
|
<artifactId>freemarker</artifactId>
|
|
|
<version>2.3.30</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
<version>2.1.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>io.springfox</groupId>
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
<version>2.9.2</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
<artifactId>swagger-bootstrap-ui</artifactId>
|
|
|
<version>1.9.6</version>
|
|
|
</dependency>
|
|
|
<!--JSON-->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
<version>1.2.31</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
|
|
|
<dependency>
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
<artifactId>gson</artifactId>
|
|
|
<version>2.8.5</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!--httpClient-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
<version>4.5.10</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--BeanUtils对象操作-->
|
|
|
<dependency>
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
<version>1.9.4</version>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!--<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
<version>1.1.9</version>
|
|
|
</dependency>-->
|
|
|
|
|
|
<!--<!– MP 代码生成工具需要的依赖1 velocity-engine-core 2 slf4j-api 3slf4j-log4j12 –>-->
|
|
|
<!--<!– Apache velocity –>-->
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>org.apache.velocity</groupId>-->
|
|
|
<!--<artifactId>velocity-engine-core</artifactId>-->
|
|
|
<!--<version>2.0</version>-->
|
|
|
<!--</dependency>-->
|
|
|
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>com.baomidou</groupId>-->
|
|
|
<!--<artifactId>mybatis-plus-generator</artifactId>-->
|
|
|
<!--<version>3.1.2</version>-->
|
|
|
<!--</dependency>-->
|
|
|
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>org.freemarker</groupId>-->
|
|
|
<!--<artifactId>freemarker</artifactId>-->
|
|
|
<!--<version>2.3.28</version>-->
|
|
|
<!--</dependency>-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
<scope>test</scope>
|
|
|
<!--<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>-->
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>net.jodah</groupId>
|
|
|
<artifactId>expiringmap</artifactId>
|
|
|
<version>0.5.9</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.lmax</groupId>
|
|
|
<artifactId>disruptor</artifactId>
|
|
|
<version>3.4.2</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
|
|
|
<dependency>
|
|
|
<groupId>commons-codec</groupId>
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
<version>1.9</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
<version>3.4.1</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
<artifactId>gson</artifactId>
|
|
|
<version>2.8.6</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 企业微信API -->
|
|
|
<dependency>
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
<artifactId>weixin-java-cp</artifactId>
|
|
|
<version>3.8.0</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>*</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
|
|
|
<dependency>
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
<version>4.2.2</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--pagehelper-->
|
|
|
<dependency>
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
<version>1.2.5</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
|
|
|
<!--pinyin 4j-->
|
|
|
<dependency>
|
|
|
<groupId>com.belerweb</groupId>
|
|
|
<artifactId>pinyin4j</artifactId>
|
|
|
<version>2.5.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
<artifactId>shiro-spring</artifactId>
|
|
|
<version>1.4.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.github.theborakompanioni</groupId>
|
|
|
<artifactId>thymeleaf-extras-shiro</artifactId>
|
|
|
<version>1.2.1</version>
|
|
|
</dependency>
|
|
|
<!-- xxl-job-core -->
|
|
|
<dependency>
|
|
|
<groupId>com.xuxueli</groupId>
|
|
|
<artifactId>xxl-job-core</artifactId>
|
|
|
<version>1.9.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi</artifactId>
|
|
|
<version>3.17</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
<version>3.17</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--springboot中的redis依赖-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<!-- 对丢失web.xml检测机制进行忽略, Dynamic Web Module 3.0 工程时代不需要web.xml文件注册相关内容的,所以工程默认不生成web.xml。-->
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<delimiters>
|
|
|
<delimiter>$</delimiter>
|
|
|
</delimiters>
|
|
|
<useDefaultDelimiters>false</useDefaultDelimiters>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<skipTests>true</skipTests>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
<finalName>youke</finalName>
|
|
|
|
|
|
|
|
|
<resources>
|
|
|
<resource>
|
|
|
<directory>src/main/java</directory>
|
|
|
<includes>
|
|
|
<include>**/*.properties</include>
|
|
|
<include>**/*.xml</include>
|
|
|
</includes>
|
|
|
<filtering>true</filtering>
|
|
|
</resource>
|
|
|
<resource>
|
|
|
<directory>src/main/resources</directory>
|
|
|
<filtering>true</filtering>
|
|
|
<includes>
|
|
|
<include>application-${profiles.active}.yml</include>
|
|
|
<include>application.yml</include>
|
|
|
<include>**/*.xml</include>
|
|
|
<include>**/*.txt</include>
|
|
|
<include>**/*.properties</include>
|
|
|
<include>META-INF/**</include>
|
|
|
</includes>
|
|
|
</resource>
|
|
|
|
|
|
<resource>
|
|
|
<directory>src/main/resources</directory>
|
|
|
<filtering>false</filtering>
|
|
|
<includes>
|
|
|
<include>static/**</include>
|
|
|
<include>page/**</include>
|
|
|
</includes>
|
|
|
</resource>
|
|
|
</resources>
|
|
|
</build>
|
|
|
|
|
|
<profiles>
|
|
|
<profile>
|
|
|
<id>dev</id>
|
|
|
<properties>
|
|
|
<profiles.active>dev</profiles.active>
|
|
|
</properties>
|
|
|
<activation>
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
</activation>
|
|
|
</profile>
|
|
|
<profile>
|
|
|
<id>stg</id>
|
|
|
<properties>
|
|
|
<profiles.active>stg</profiles.active>
|
|
|
</properties>
|
|
|
</profile>
|
|
|
<profile>
|
|
|
<id>pro</id>
|
|
|
<properties>
|
|
|
<profiles.active>prod</profiles.active>
|
|
|
</properties>
|
|
|
</profile>
|
|
|
<profile>
|
|
|
<id>test</id>
|
|
|
<properties>
|
|
|
<profiles.active>test</profiles.active>
|
|
|
</properties>
|
|
|
</profile>
|
|
|
</profiles>
|
|
|
</project>
|