<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.2.6.RELEASE</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>com.xcong</groupId>
|
<artifactId>farmer-cms</artifactId>
|
<version>1.0.0</version>
|
<name>farmerCms</name>
|
|
<properties>
|
<java.version>1.8</java.version>
|
<mysql-driver.version>8.0.17</mysql-driver.version>
|
<alibaba-druid.version>1.1.18</alibaba-druid.version>
|
<mybatis.version>2.0.1</mybatis.version>
|
<mybatis-plus.version>3.3.1.tmp</mybatis-plus.version>
|
<validation-api.version>2.0.1.Final</validation-api.version>
|
<hibernate-validator.version>6.1.0.Final</hibernate-validator.version>
|
<swagger.version>2.9.2</swagger.version>
|
<io-swagger.version>1.5.23</io-swagger.version>
|
<mapstruct.version>1.3.1.Final</mapstruct.version>
|
<netty.version>4.1.33.Final</netty.version>
|
<hutool.version>5.3.1</hutool.version>
|
<fastjson.version>1.2.61</fastjson.version>
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
<groupId>com.github.penggle</groupId>
|
<artifactId>kaptcha</artifactId>
|
<version>2.3.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-security</artifactId>
|
</dependency>
|
|
<!-- <dependency>-->
|
<!-- <groupId>org.springframework.security</groupId>-->
|
<!-- <artifactId>spring-security-test</artifactId>-->
|
<!-- <scope>test</scope>-->
|
<!-- </dependency>-->
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-devtools</artifactId>
|
<scope>runtime</scope>
|
<optional>true</optional>
|
</dependency>
|
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
<exclusions>
|
<exclusion>
|
<groupId>org.junit.vintage</groupId>
|
<artifactId>junit-vintage-engine</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<dependency>
|
<groupId>org.mybatis.spring.boot</groupId>
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
<version>${mybatis.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>${mybatis-plus.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
<version>${alibaba-druid.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>${mysql-driver.version}</version>
|
</dependency>
|
|
<!-- 参数校验 start -->
|
<dependency>
|
<groupId>javax.validation</groupId>
|
<artifactId>validation-api</artifactId>
|
<version>${validation-api.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.hibernate</groupId>
|
<artifactId>hibernate-validator</artifactId>
|
<version>${hibernate-validator.version}</version>
|
</dependency>
|
<!-- 参数校验 end -->
|
|
<!-- swagger2 start -->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>${swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-annotations</artifactId>
|
<version>${io-swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-models</artifactId>
|
<version>${io-swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>${swagger.version}</version>
|
</dependency>
|
<!-- swagger2 end -->
|
|
<!-- bean映射转化 -->
|
<dependency>
|
<groupId>org.mapstruct</groupId>
|
<artifactId>mapstruct</artifactId>
|
<version>${mapstruct.version}</version>
|
</dependency>
|
|
<!-- <dependency>-->
|
<!-- <groupId>org.mapstruct</groupId>-->
|
<!-- <artifactId>mapstruct-processor</artifactId>-->
|
<!-- <version>${mapstruct.version}</version>-->
|
<!-- </dependency>-->
|
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>${hutool.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>${fastjson.version}</version>
|
</dependency>
|
|
|
|
<dependency>
|
<groupId>io.netty</groupId>
|
<artifactId>netty-all</artifactId>
|
<version>${netty.version}</version>
|
</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>io.vertx</groupId>
|
<artifactId>vertx-core</artifactId>
|
<version>3.9.7</version>
|
<!-- <scope>runtime</scope>-->
|
</dependency>
|
<dependency>
|
<groupId>io.grpc</groupId>
|
<artifactId>grpc-netty-shaded</artifactId>
|
<version>1.31.0</version>
|
<!-- <scope>runtime</scope>-->
|
</dependency>
|
<dependency>
|
<groupId>io.grpc</groupId>
|
<artifactId>grpc-netty</artifactId>
|
<version>1.31.0</version>
|
<!-- <scope>runtime</scope>-->
|
</dependency>
|
<dependency>
|
<groupId>io.grpc</groupId>
|
<artifactId>grpc-okhttp</artifactId>
|
<version>1.31.0</version>
|
<!-- <scope>runtime</scope>-->
|
</dependency>
|
<dependency>
|
<groupId>io.grpc</groupId>
|
<artifactId>grpc-protobuf</artifactId>
|
<version>1.37.0</version>
|
<!-- <scope>runtime</scope>-->
|
</dependency>
|
|
<dependency>
|
<groupId>io.grpc</groupId>
|
<artifactId>grpc-stub</artifactId>
|
<version>1.37.0</version>
|
<!-- <scope>runtime</scope>-->
|
</dependency>
|
<dependency>
|
<groupId>com.google.protobuf</groupId>
|
<artifactId>protobuf-java-util</artifactId>
|
<version>3.11.0</version>
|
<!-- <scope>runtime</scope>-->
|
</dependency>
|
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-jdk15on</artifactId>
|
<version>1.68</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
|
<dependency>
|
<groupId>org.jsoup</groupId>
|
<artifactId>jsoup</artifactId>
|
<version>1.14.3</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.11.0</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.codehaus.groovy/groovy -->
|
<dependency>
|
<groupId>org.codehaus.groovy</groupId>
|
<artifactId>groovy</artifactId>
|
<version>2.5.6</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-text -->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-text</artifactId>
|
<version>1.9</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</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>
|