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.
139 lines
4.4 KiB
139 lines
4.4 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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>com.biutag</groupId> |
|
<artifactId>mailbox-boot</artifactId> |
|
<version>1.0-tzxx</version> |
|
</parent> |
|
|
|
<artifactId>mailbox-outer-admin</artifactId> |
|
|
|
<description>厅长信箱-互联网管理端</description> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-validation</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
</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> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.postgresql</groupId> |
|
<artifactId>postgresql</artifactId> |
|
<version>42.7.4</version> |
|
</dependency> |
|
|
|
<!-- mysql JDBC驱动 --> |
|
<dependency> |
|
<groupId>com.mysql</groupId> |
|
<artifactId>mysql-connector-j</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.baomidou</groupId> |
|
<artifactId>mybatis-plus-boot-starter</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.mybatis</groupId> |
|
<artifactId>mybatis-spring</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>${project.groupId}</groupId> |
|
<artifactId>mailbox-common</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>easyexcel</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.jsonwebtoken</groupId> |
|
<artifactId>jjwt</artifactId> |
|
<version>0.12.3</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.github.ben-manes.caffeine</groupId> |
|
<artifactId>caffeine</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.github.ben-manes.caffeine</groupId> |
|
<artifactId>caffeine</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.baomidou</groupId> |
|
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId> |
|
<version>4.3.1</version> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<filtering>false</filtering> |
|
</resource> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<includes> |
|
<include>application.yml</include> |
|
</includes> |
|
<filtering>true</filtering> |
|
</resource> |
|
</resources> |
|
|
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<configuration> |
|
<excludes> |
|
<exclude> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
</exclude> |
|
</excludes> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<goals> |
|
<goal>repackage</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<configuration> |
|
<source>17</source> |
|
<target>17</target> |
|
</configuration> |
|
</plugin> |
|
|
|
</plugins> |
|
|
|
<finalName>mailbox-outer-admin</finalName> |
|
</build> |
|
|
|
</project>
|
|
|