4 changed files with 191 additions and 43 deletions
@ -0,0 +1,141 @@ |
|||||
|
<?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.7.0</version> |
||||
|
<relativePath/> |
||||
|
</parent> |
||||
|
<!-- 仓 库 地 址 --> |
||||
|
<version>1.0.0</version> |
||||
|
<!-- 项 目 描 述 --> |
||||
|
<name>JSL订单服务拓展</name> |
||||
|
<artifactId>supplier-ext</artifactId> |
||||
|
<description>JSL供应商服务拓展</description> |
||||
|
|
||||
|
<!-- 版 本 管 理 --> |
||||
|
<properties> |
||||
|
<skipTests>true</skipTests> |
||||
|
<!-- JDK 版本 --> |
||||
|
<java.version>1.8</java.version> |
||||
|
<!-- Mysql 版 本 --> |
||||
|
<mysql.version>8.0.28</mysql.version> |
||||
|
<!-- MyBatis 版 本 --> |
||||
|
<mybatis.plus.version>3.5.1</mybatis.plus.version> |
||||
|
<!-- Fast Json 序 列 化 版 本 --> |
||||
|
<fastjson.version>1.2.79</fastjson.version> |
||||
|
<!-- Lombok 版 本 --> |
||||
|
<lombok.version>1.18.22</lombok.version> |
||||
|
<!-- jackson --> |
||||
|
<jackson.version>2.13.0</jackson.version> |
||||
|
<!-- 网 路 工 具 --> |
||||
|
<httpclient.version>4.5.7</httpclient.version> |
||||
|
<commons-httpclient.version>3.1</commons-httpclient.version> |
||||
|
<!-- Maven 配 置 编 译 JDK 版 本--> |
||||
|
<maven.compiler.target>8</maven.compiler.target> |
||||
|
<maven.compiler.source>8</maven.compiler.source> |
||||
|
<maven-resources-plugin.version>3.1.0</maven-resources-plugin.version> |
||||
|
</properties> |
||||
|
|
||||
|
<!-- 依 赖 管 理 --> |
||||
|
<dependencies> |
||||
|
<!-- Web 模块 --> |
||||
|
<dependency> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-starter-web</artifactId> |
||||
|
<!-- 排除Tomcat依赖 --> |
||||
|
<exclusions> |
||||
|
<exclusion> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-starter-tomcat</artifactId> |
||||
|
</exclusion> |
||||
|
</exclusions> |
||||
|
</dependency> |
||||
|
<!-- Undertow依赖 --> |
||||
|
<dependency> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-starter-undertow</artifactId> |
||||
|
</dependency> |
||||
|
<!-- 参 数 验 证 --> |
||||
|
<dependency> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-starter-validation</artifactId> |
||||
|
</dependency> |
||||
|
<!-- 数 据 库 连 接 工 具 --> |
||||
|
<!-- <dependency>--> |
||||
|
<!-- <groupId>mysql</groupId>--> |
||||
|
<!-- <artifactId>mysql-connector-java</artifactId>--> |
||||
|
<!-- <version>${mysql.version}</version>--> |
||||
|
<!-- </dependency>--> |
||||
|
<dependency> |
||||
|
<groupId>com.microsoft.sqlserver</groupId> |
||||
|
<artifactId>mssql-jdbc</artifactId> |
||||
|
<version>8.4.1.jre8</version> |
||||
|
</dependency> |
||||
|
|
||||
|
<!-- 数 据 库 操 作 框 架 --> |
||||
|
<dependency> |
||||
|
<groupId>com.baomidou</groupId> |
||||
|
<artifactId>mybatis-plus-boot-starter</artifactId> |
||||
|
<version>${mybatis.plus.version}</version> |
||||
|
</dependency> |
||||
|
<!-- JSON 解 析 工 具 --> |
||||
|
<dependency> |
||||
|
<groupId>com.alibaba</groupId> |
||||
|
<artifactId>fastjson</artifactId> |
||||
|
<version>${fastjson.version}</version> |
||||
|
</dependency> |
||||
|
<!-- 网络工具 --> |
||||
|
<dependency> |
||||
|
<groupId>org.apache.httpcomponents</groupId> |
||||
|
<artifactId>httpclient</artifactId> |
||||
|
<version>${httpclient.version}</version> |
||||
|
<scope>compile</scope> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>commons-httpclient</groupId> |
||||
|
<artifactId>commons-httpclient</artifactId> |
||||
|
<version>${commons-httpclient.version}</version> |
||||
|
</dependency> |
||||
|
<!-- Lombok --> |
||||
|
<dependency> |
||||
|
<groupId>org.projectlombok</groupId> |
||||
|
<artifactId>lombok</artifactId> |
||||
|
<version>${lombok.version}</version> |
||||
|
<scope>provided</scope> |
||||
|
</dependency> |
||||
|
<!-- hutool --> |
||||
|
<dependency> |
||||
|
<groupId>cn.hutool</groupId> |
||||
|
<artifactId>hutool-all</artifactId> |
||||
|
<version>5.6.2</version> |
||||
|
</dependency> |
||||
|
<!-- TEST --> |
||||
|
<dependency> |
||||
|
<groupId>junit</groupId> |
||||
|
<artifactId>junit</artifactId> |
||||
|
<version>RELEASE</version> |
||||
|
<scope>test</scope> |
||||
|
</dependency> |
||||
|
<!-- Spring-test --> |
||||
|
<dependency> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-starter-test</artifactId> |
||||
|
<scope>test</scope> |
||||
|
</dependency> |
||||
|
</dependencies> |
||||
|
|
||||
|
<!-- 构建工具 --> |
||||
|
<build> |
||||
|
<!-- Maven 构 建 插 件 --> |
||||
|
<plugins> |
||||
|
<plugin> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-maven-plugin</artifactId> |
||||
|
</plugin> |
||||
|
</plugins> |
||||
|
</build> |
||||
|
</project> |
Loading…
Reference in new issue