You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
294 lines
8.7 KiB
294 lines
8.7 KiB
<?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.yipin</groupId> |
|
<artifactId>liuwanr</artifactId> |
|
<version>1.0.0</version> |
|
<packaging>jar</packaging> |
|
|
|
<name>Spring Boot Project</name> |
|
|
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
<version>2.1.5.RELEASE</version> |
|
</parent> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<java.version>1.8</java.version> |
|
<!--log4jdbc.log4j2.version>1.16</log4jdbc.log4j2.version --> |
|
</properties> |
|
|
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.elasticsearch.client</groupId> |
|
<artifactId>elasticsearch-rest-high-level-client</artifactId> |
|
<version>7.4.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.elasticsearch.client</groupId> |
|
<artifactId>elasticsearch-rest-client</artifactId> |
|
<version>7.4.0</version> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
|
|
<dependencies> |
|
<!--lombok--> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
</dependency> |
|
<!--mybatis-plus--> |
|
<dependency> |
|
<groupId>com.baomidou</groupId> |
|
<artifactId>mybatis-plus-boot-starter</artifactId> |
|
<version>3.3.1</version> |
|
</dependency> |
|
<!-- springcloud --> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-dependencies</artifactId> |
|
<version>Edgware.RELEASE</version> |
|
<scope>import</scope> |
|
<type>pom</type> |
|
</dependency> |
|
<!-- redis --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-redis</artifactId> |
|
<version>1.4.7.RELEASE</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-logging</artifactId> |
|
</exclusion> |
|
<!--<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-tomcat</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-jdbc</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-log4j2</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mybatis.spring.boot</groupId> |
|
<artifactId>mybatis-spring-boot-starter</artifactId> |
|
<version>2.0.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.elasticsearch</groupId> |
|
<artifactId>elasticsearch</artifactId> |
|
<version>7.4.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.elasticsearch.client</groupId> |
|
<artifactId>elasticsearch-rest-high-level-client</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.elasticsearch.client</groupId> |
|
<artifactId>elasticsearch-rest-client</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
<version>1.2.47</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>dubbo</artifactId> |
|
<version>2.6.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.aliyun.oss</groupId> |
|
<artifactId>aliyun-sdk-oss</artifactId> |
|
<version>2.8.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.mina</groupId> |
|
<artifactId>mina-core</artifactId> |
|
<version>2.0.17</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.commons</groupId> |
|
<artifactId>commons-lang3</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-io</groupId> |
|
<artifactId>commons-io</artifactId> |
|
<version>1.3.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-codec</groupId> |
|
<artifactId>commons-codec</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>mysql</groupId> |
|
<artifactId>mysql-connector-java</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.kafka</groupId> |
|
<artifactId>spring-kafka</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.ansj</groupId> |
|
<artifactId>ansj_seg</artifactId> |
|
<version>5.1.6</version> |
|
</dependency> |
|
<!--读取excel文件 --> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi</artifactId> |
|
<version>3.17</version> |
|
</dependency> |
|
<!--导出excel文件 --> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml</artifactId> |
|
<version>3.17</version> |
|
</dependency> |
|
<!-- mybatis分页插件 --> |
|
<dependency> |
|
<groupId>com.github.pagehelper</groupId> |
|
<artifactId>pagehelper-spring-boot-starter</artifactId> |
|
<version>1.2.5</version> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-aspectj --> |
|
<dependency> |
|
<groupId>org.apache.shiro</groupId> |
|
<artifactId>shiro-aspectj</artifactId> |
|
<version>1.3.2</version> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-cas --> |
|
<dependency> |
|
<groupId>org.apache.shiro</groupId> |
|
<artifactId>shiro-cas</artifactId> |
|
<version>1.3.2</version> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-core --> |
|
<dependency> |
|
<groupId>org.apache.shiro</groupId> |
|
<artifactId>shiro-core</artifactId> |
|
<version>1.3.2</version> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-ehcache --> |
|
<dependency> |
|
<groupId>org.apache.shiro</groupId> |
|
<artifactId>shiro-ehcache</artifactId> |
|
<version>1.3.2</version> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-guice --> |
|
<dependency> |
|
<groupId>org.apache.shiro</groupId> |
|
<artifactId>shiro-guice</artifactId> |
|
<version>1.3.2</version> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-quartz --> |
|
<!-- <dependency> |
|
<groupId>org.apache.shiro</groupId> |
|
<artifactId>shiro-quartz</artifactId> |
|
<version>1.3.2</version> |
|
</dependency> --> |
|
<!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-spring --> |
|
<dependency> |
|
<groupId>org.apache.shiro</groupId> |
|
<artifactId>shiro-spring</artifactId> |
|
<version>1.3.2</version> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.apache.shiro.tools/shiro-tools-hasher --> |
|
<dependency> |
|
<groupId>org.apache.shiro.tools</groupId> |
|
<artifactId>shiro-tools-hasher</artifactId> |
|
<version>1.3.2</version> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-web --> |
|
<dependency> |
|
<groupId>org.apache.shiro</groupId> |
|
<artifactId>shiro-web</artifactId> |
|
<version>1.3.2</version> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 --> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-log4j12</artifactId> |
|
<version>1.7.12</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-api</artifactId> |
|
<version>1.7.12</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-fileupload</groupId> |
|
<artifactId>commons-fileupload</artifactId> |
|
<version>1.4</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<!--添加servlet-api的依赖,用来打war包 --> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>javax.servlet-api</artifactId> |
|
<scope>provided</scope> |
|
</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.28</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<finalName>root</finalName> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<version>2.20.1</version> |
|
<configuration> |
|
<skipTests>true</skipTests> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
|
|
</project>
|
|
|