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.
71 lines
2.6 KiB
71 lines
2.6 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.dsideal</groupId>
|
|
<artifactId>dsProject</artifactId>
|
|
<version>1.0</version>
|
|
</parent>
|
|
<artifactId>dsBase</artifactId>
|
|
<name>dsBase</name>
|
|
|
|
<dependencies>
|
|
<!-- 静态资源处理 -->
|
|
<dependency>
|
|
<groupId>net.coobird</groupId>
|
|
<artifactId>thumbnailator</artifactId>
|
|
<version>${thumbnailator.version}</version>
|
|
</dependency>
|
|
<!-- 日志相关依赖已移至dsUtils模块统一管理 -->
|
|
<!-- 临时添加lombok依赖解决编译问题 -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!--定时任务-->
|
|
<dependency>
|
|
<groupId>it.sauronsoftware.cron4j</groupId>
|
|
<artifactId>cron4j</artifactId>
|
|
<version>${cron4j.version}</version>
|
|
</dependency>
|
|
<!--FastExcel-->
|
|
<dependency>
|
|
<groupId>cn.idev.excel</groupId>
|
|
<artifactId>fastexcel</artifactId>
|
|
<version>${fastexcel.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.dsideal</groupId>
|
|
<artifactId>dsUtils</artifactId>
|
|
<version>1.0</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.11.0</version>
|
|
<configuration>
|
|
<source>21</source>
|
|
<target>21</target>
|
|
<encoding>UTF-8</encoding>
|
|
<compilerArgument>-parameters</compilerArgument>
|
|
<compilerArgument>-Xlint:unchecked</compilerArgument>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |