<?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>
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.3.3.RELEASE</version>
|
</parent>
|
<groupId>com.mm</groupId>
|
<artifactId>mdc_service</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
<packaging>jar</packaging>
|
|
<properties>
|
<commons-fileupload.version>1.3.3</commons-fileupload.version>
|
<java.version>1.8</java.version>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<lombok.version>1.18.16</lombok.version>
|
<orika-core.version>1.5.4</orika-core.version>
|
<mybatisplus.boot.starter.version>3.4.0</mybatisplus.boot.starter.version>
|
</properties>
|
|
<dependencies>
|
<!--spring boot 开始-->
|
<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>
|
<!--spring boot 结束-->
|
<!--数据库连接在springboot中定义了,所以可以管理包的版本-->
|
<!-- <dependency>
|
<groupId>com.microsoft.sqlserver</groupId>
|
<artifactId>mssql-jdbc</artifactId>
|
<scope>runtime</scope>
|
</dependency>-->
|
<!--mybatis plus和springboot整合-->
|
<!-- <dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>${mybatisplus.boot.starter.version}</version>
|
</dependency>-->
|
|
<!-- 动态数据源 -->
|
<!-- <dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
<version>3.2.1</version>
|
</dependency>-->
|
|
<!--https://mvnrepository.com/artifact/org.projectlombok/lombok/1.18.16-->
|
<!--scope=provided,说明它只在编译阶段生效,不需要打入包中, Lombok在编译期将带Lombok注解的Java文件正确编译为完整的Class文件-->
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>${lombok.version}</version>
|
<!--<scope>provided</scope>-->
|
</dependency>
|
|
<!-- 代码自动生成依赖 begin 上线后不需要,只在common中添加 -->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-generator</artifactId>
|
<version>3.4.1</version>
|
<!--<scope>provided</scope>-->
|
</dependency>
|
<!-- velocity -->
|
<dependency>
|
<groupId>org.apache.velocity</groupId>
|
<artifactId>velocity-engine-core</artifactId>
|
<version>2.0</version>
|
<!--<scope>provided</scope>-->
|
</dependency>
|
<!--http-->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.10</version>
|
</dependency>
|
<!--SM3算法-->
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-jdk15on</artifactId>
|
<version>1.57</version>
|
</dependency>
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-ext-jdk15on</artifactId>
|
<version>1.57</version>
|
</dependency>
|
<!--JWT-->
|
<dependency>
|
<groupId>com.auth0</groupId>
|
<artifactId>java-jwt</artifactId>
|
<version>3.4.0</version>
|
</dependency>
|
<dependency>
|
<groupId>ma.glasnost.orika</groupId>
|
<artifactId>orika-core</artifactId>
|
<version>${orika-core.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.graylog2</groupId>
|
<artifactId>syslog4j</artifactId>
|
<version>0.9.60</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>${commons-lang3.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-fileupload</groupId>
|
<artifactId>commons-fileupload</artifactId>
|
<version>${commons-fileupload.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-codec</groupId>
|
<artifactId>commons-codec</artifactId>
|
<version>${commons-codec.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>ma.glasnost.orika</groupId>
|
<artifactId>orika-core</artifactId>
|
<version>${orika-core.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-jdk15to18</artifactId>
|
<version>1.64</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>5.8.5</version>
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
<finalName>${project.artifactId}</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
<configuration>
|
<skipTests>true</skipTests>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|