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

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