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.
149 lines
4.9 KiB
149 lines
4.9 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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>com.depsystem</groupId> |
|
<artifactId>app</artifactId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
<relativePath>../pom.xml</relativePath> |
|
</parent> |
|
<artifactId>app-service</artifactId> |
|
<name>app-service</name> |
|
<description>service 模块,对应 MVC 的 M 概念,存放核心业务逻辑代码</description> |
|
<dependencies> |
|
<dependency> |
|
<groupId>com.baomidou</groupId> |
|
<artifactId>mybatis-plus-boot-starter</artifactId> |
|
<version>3.5.3</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.mybatis.spring.boot</groupId> |
|
<artifactId>mybatis-spring-boot-starter</artifactId> |
|
<version>3.0.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.mysql</groupId> |
|
<artifactId>mysql-connector-j</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<version>1.18.26</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<!-- 类型转换工具 --> |
|
<dependency> |
|
<groupId>org.mapstruct</groupId> |
|
<artifactId>mapstruct</artifactId> |
|
<version>1.5.3.Final</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.mapstruct</groupId> |
|
<artifactId>mapstruct-processor</artifactId> |
|
<version>1.5.3.Final</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.modelmapper</groupId> |
|
<artifactId>modelmapper</artifactId> |
|
<version>3.1.1</version> |
|
</dependency> |
|
|
|
<!-- json 工具 --> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
<version>2.0.25</version> |
|
</dependency> |
|
|
|
<!-- jwt --> |
|
<dependency> |
|
<groupId>io.jsonwebtoken</groupId> |
|
<artifactId>jjwt</artifactId> |
|
<version>0.9.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.auth0</groupId> |
|
<artifactId>java-jwt</artifactId> |
|
<version>4.3.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>javax.xml.bind</groupId> |
|
<artifactId>jaxb-api</artifactId> |
|
<version>2.3.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sun.xml.bind</groupId> |
|
<artifactId>jaxb-impl</artifactId> |
|
<version>2.3.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sun.xml.bind</groupId> |
|
<artifactId>jaxb-core</artifactId> |
|
<version>2.3.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.activation</groupId> |
|
<artifactId>activation</artifactId> |
|
<version>1.1.1</version> |
|
</dependency> |
|
|
|
<!-- hutool 工具 --> |
|
<dependency> |
|
<groupId>cn.hutool</groupId> |
|
<artifactId>hutool-all</artifactId> |
|
<version>5.8.16</version> |
|
</dependency> |
|
<!-- redis 工具 --> |
|
<dependency> |
|
<groupId>org.springframework.data</groupId> |
|
<artifactId>spring-data-redis</artifactId> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.8.1</version> |
|
<configuration> |
|
<source>17</source> |
|
<target>17</target> |
|
<encoding>UTF-8</encoding> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<version>3.0.0</version> |
|
<configuration> |
|
<mainClass>com.depsystem.app.AppApplication</mainClass> |
|
<excludes> |
|
<exclude> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
</exclude> |
|
</excludes> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>repackage</id> |
|
<goals> |
|
<goal>repackage</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|