<?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>api</groupId>
|
<artifactId>api</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.1.6.RELEASE</version>
|
</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>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-logging</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>1.18.4</version>
|
<scope>provided</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>com.google.code.gson</groupId>
|
<artifactId>gson</artifactId>
|
<version>2.8.6</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.47</version>
|
</dependency>
|
|
<!-- mybatis -->
|
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
|
<dependency>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis</artifactId>
|
<version>3.5.2</version>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>5.1.47</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.mybatis.spring.boot</groupId>
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
<version>1.1.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis-spring</artifactId>
|
<version>1.3.2</version>
|
</dependency>
|
<dependency>
|
<!--自动配置-->
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
<version>1.1.13</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpcore</artifactId>
|
<version>4.4.15</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>5.7.5</version>
|
</dependency>
|
|
<!--分页插件-->
|
<dependency>
|
<groupId>com.github.pagehelper</groupId>
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
<version>1.2.3</version>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/org.msgpack/msgpack -->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.2</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpcore</artifactId>
|
<version>4.4.4</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-httpclient</groupId>
|
<artifactId>commons-httpclient</artifactId>
|
<version>3.1</version>
|
</dependency>
|
<dependency>
|
<groupId>com.squareup.okhttp3</groupId>
|
<artifactId>okhttp</artifactId>
|
<version>3.6.0</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-lang</groupId>
|
<artifactId>commons-lang</artifactId>
|
<version>2.6</version>
|
</dependency>
|
<dependency>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
<version>18.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<!--MP依赖-->
|
<!-- <dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.0.7.1</version>
|
<exclusions>
|
<exclusion>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-generator</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus</artifactId>
|
<version>3.0.7.1</version>
|
</dependency>-->
|
</dependencies>
|
|
<dependencyManagement>
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.cloud</groupId>
|
<artifactId>spring-cloud-dependencies</artifactId>
|
<version>Greenwich.RELEASE</version>
|
<type>pom</type>
|
<scope>import</scope>
|
</dependency>
|
</dependencies>
|
|
</dependencyManagement>
|
|
<repositories>
|
<repository>
|
<id>spring-snapshots</id>
|
<name>Spring Snapshots</name>
|
<url>http://repo.spring.io/libs-snapshot-local</url>
|
<snapshots>
|
<enabled>true</enabled>
|
</snapshots>
|
</repository>
|
<repository>
|
<id>spring-milestones</id>
|
<name>Spring Milestones</name>
|
<url>http://repo.spring.io/libs-milestone-local</url>
|
<snapshots>
|
<enabled>false</enabled>
|
</snapshots>
|
</repository>
|
<repository>
|
<id>spring-releases</id>
|
<name>Spring Releases</name>
|
<url>http://repo.spring.io/libs-release-local</url>
|
<snapshots>
|
<enabled>false</enabled>
|
</snapshots>
|
</repository>
|
</repositories>
|
<pluginRepositories>
|
<pluginRepository>
|
<id>spring-snapshots</id>
|
<name>Spring Snapshots</name>
|
<url>http://repo.spring.io/libs-snapshot-local</url>
|
<snapshots>
|
<enabled>true</enabled>
|
</snapshots>
|
</pluginRepository>
|
<pluginRepository>
|
<id>spring-milestones</id>
|
<name>Spring Milestones</name>
|
<url>http://repo.spring.io/libs-milestone-local</url>
|
<snapshots>
|
<enabled>false</enabled>
|
</snapshots>
|
</pluginRepository>
|
</pluginRepositories>
|
|
<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>
|
<configuration>
|
<source>1.8</source>
|
<target>1.8</target>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|