|
|
<?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>
|
|
|
<groupId>dsideal</groupId>
|
|
|
<artifactId>QingLong</artifactId>
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
<!--使用jdk21进行编译-->
|
|
|
<properties>
|
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
|
</properties>
|
|
|
<!-- 使用阿里 maven 库 -->
|
|
|
<repositories>
|
|
|
<repository>
|
|
|
<id>ali-maven</id>
|
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
|
|
|
<releases>
|
|
|
<enabled>true</enabled>
|
|
|
</releases>
|
|
|
<snapshots>
|
|
|
<enabled>true</enabled>
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
<checksumPolicy>fail</checksumPolicy>
|
|
|
</snapshots>
|
|
|
</repository>
|
|
|
</repositories>
|
|
|
<dependencies>
|
|
|
<!--jfinal主框架-->
|
|
|
<dependency>
|
|
|
<groupId>com.jfinal</groupId>
|
|
|
<artifactId>jfinal</artifactId>
|
|
|
<version>5.1.6</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.jfinal</groupId>
|
|
|
<artifactId>jfinal-undertow</artifactId>
|
|
|
<version>3.5</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.jfinal</groupId>
|
|
|
<artifactId>cos</artifactId>
|
|
|
<version>2022.2</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--引用光-->
|
|
|
<!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP -->
|
|
|
<dependency>
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
<version>5.1.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
|
|
|
<!--安装hutool-->
|
|
|
<dependency>
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
<version>5.8.24</version>
|
|
|
</dependency>
|
|
|
<!--引用fastjson-->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
<version>2.0.45</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--引用poi-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi</artifactId>
|
|
|
<version>5.2.5</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
<version>5.2.5</version>
|
|
|
</dependency>
|
|
|
<!--引用jsoup防止xss攻击-->
|
|
|
<dependency>
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
<version>1.17.2</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--引用gson-->
|
|
|
<dependency>
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
<artifactId>gson</artifactId>
|
|
|
<version>2.10.1</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-io</groupId>
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
<version>2.14.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-email</artifactId>
|
|
|
<version>1.5</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
<version>3.12.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.dom4j</groupId>
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
<version>2.1.4</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
|
|
|
<dependency>
|
|
|
<groupId>redis.clients</groupId>
|
|
|
<artifactId>jedis</artifactId>
|
|
|
<version>5.1.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>httpmime</artifactId>
|
|
|
<version>4.5.14</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
<version>2.20.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
<artifactId>log4j-api</artifactId>
|
|
|
<version>2.20.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.web3j/core -->
|
|
|
<dependency>
|
|
|
<groupId>org.web3j</groupId>
|
|
|
<artifactId>core</artifactId>
|
|
|
<version>5.0.0</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
|
|
|
<dependency>
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
<version>4.12.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
<version>1.7.36</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
<version>2.15.3</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
<version>2.14.2</version>
|
|
|
<!--升级到新版本时Debezium启动失败!-->
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
<version>1.18.30</version>
|
|
|
<scope>provided</scope>
|
|
|
</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>
|
|
|
<!-- java21 保留参数名编译参数 -->
|
|
|
<compilerArgument>-parameters</compilerArgument>
|
|
|
<compilerArgument>-Xlint:unchecked</compilerArgument>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
</project> |