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.
121 lines
3.7 KiB
121 lines
3.7 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</version> |
|
</parent> |
|
|
|
<artifactId>mailbox-report</artifactId> |
|
<description>局长信箱-110</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-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>Vastbase</groupId> |
|
<artifactId>VastbaseG100_jdbc</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.baomidou</groupId> |
|
<artifactId>mybatis-plus-boot-starter</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>${project.groupId}</groupId> |
|
<artifactId>mailbox-common</artifactId> |
|
</dependency> |
|
|
|
<!-- Quartz-Scheduler --> |
|
<dependency> |
|
<groupId>org.quartz-scheduler</groupId> |
|
<artifactId>quartz</artifactId> |
|
<version>2.3.2</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>jakarta.validation</groupId> |
|
<artifactId>jakarta.validation-api</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>easyexcel</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.dameng</groupId> |
|
<artifactId>DmJdbcDriver18</artifactId> |
|
<version>8.1.3.140</version> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<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>9</source> |
|
<target>9</target> |
|
</configuration> |
|
</plugin> |
|
|
|
</plugins> |
|
|
|
<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> |
|
<finalName>mailbox-report</finalName> |
|
</build> |
|
|
|
</project> |