|
|
|
<?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>com.dsideal</groupId>
|
|
|
|
<artifactId>dsProject</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
|
|
<module>dsGw</module>
|
|
|
|
<module>dsBase</module>
|
|
|
|
<module>dsUtils</module>
|
|
|
|
<module>dsRes</module>
|
|
|
|
</modules>
|
|
|
|
<!-- 使用阿里 maven 库 -->
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>ali-maven</id>
|
|
|
|
<url>https://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>
|
|
|
|
<!--使用jdk21进行编译-->
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<!--JFinal版本号-->
|
|
|
|
<jfinal.version>5.2.4</jfinal.version>
|
|
|
|
<jfinal-undertow.version>3.7</jfinal-undertow.version>
|
|
|
|
<jfinal-cos.version>2022.2</jfinal-cos.version>
|
|
|
|
<!--HikariCP版本号-->
|
|
|
|
<HikariCP.version>6.3.0</HikariCP.version>
|
|
|
|
<!--生成JWT的版本号-->
|
|
|
|
<jjwt.version>0.7.0</jjwt.version>
|
|
|
|
<!--生成接口文档的类库版本号-->
|
|
|
|
<japidocs.version>1.4.4</japidocs.version>
|
|
|
|
<!--fastjson版本号-->
|
|
|
|
<fastjson.version>2.0.57</fastjson.version>
|
|
|
|
<!--Hutool工具包-->
|
|
|
|
<hutool.version>5.8.37</hutool.version>
|
|
|
|
<!--Minio版本号-->
|
|
|
|
<minio.version>8.5.17</minio.version>
|
|
|
|
<!--jedis版本号-->
|
|
|
|
<jedis.version>5.1.5</jedis.version>
|
|
|
|
<!--Postgresql 版本号-->
|
|
|
|
<postgresql.version>42.7.5</postgresql.version>
|
|
|
|
<!--POI版本-->
|
|
|
|
<poi.version>5.2.5</poi.version>
|
|
|
|
<!--yaml文件读取-->
|
|
|
|
<snakeyaml.version>2.3</snakeyaml.version>
|
|
|
|
<!--maven插件版本号-->
|
|
|
|
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
|
|
|
<maven-assembly-plugin.version>3.7.1</maven-assembly-plugin.version>
|
|
|
|
<maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
|
|
|
|
</properties>
|
|
|
|
</project>
|