|
|
@@ -1,17 +1,105 @@
|
|
|
<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>cn.qinys</groupId>
|
|
|
- <artifactId>wishing-platform</artifactId>
|
|
|
- <version>1.0.0-SNAPSHOT</version>
|
|
|
- </parent>
|
|
|
- <artifactId>platform-core</artifactId>
|
|
|
+ <groupId>cn.qinys</groupId>
|
|
|
+ <artifactId>wishing-platform</artifactId>
|
|
|
<packaging>pom</packaging>
|
|
|
- <modules>
|
|
|
- <module>platform-core-base</module>
|
|
|
- </modules>
|
|
|
+ <version>1.0.0-SNAPSHOT</version>
|
|
|
<properties>
|
|
|
+ <maven.compiler.source>21</maven.compiler.source>
|
|
|
+ <maven.compiler.target>21</maven.compiler.target>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <spring-cloud.version>2025.0.2</spring-cloud.version>
|
|
|
+ <spring-boot.version>3.5.14</spring-boot.version>
|
|
|
+ <spring-cloud-alibaba.version>2025.0.0.0</spring-cloud-alibaba.version>
|
|
|
+ <fastjson-version>2.0.32</fastjson-version>
|
|
|
+ <mybatis-plus-version>3.5.15</mybatis-plus-version>
|
|
|
+ <kaptcha.version>2.3.2</kaptcha.version>
|
|
|
+ <hutool-all-version>5.8.32</hutool-all-version>
|
|
|
+ <mysql-connector-version>8.0.33</mysql-connector-version>
|
|
|
+ <alibaba.ttl.version>2.14.2</alibaba.ttl.version>
|
|
|
+ <spring-ai.version>1.1.7</spring-ai.version>
|
|
|
</properties>
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <!--spring cloud 版本管理-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-dependencies</artifactId>
|
|
|
+ <version>${spring-cloud.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ <!--spring boot 版本管理-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ <!--spring 阿里巴巴 版本管理-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
|
+ <version>${spring-cloud-alibaba.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>${fastjson-version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
|
+ <version>${mybatis-plus-version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-extension</artifactId>
|
|
|
+ <version>${mybatis-plus-version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-jsqlparser</artifactId>
|
|
|
+ <version>${mybatis-plus-version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!--数据库-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>${mysql-connector-version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.penggle</groupId>
|
|
|
+ <artifactId>kaptcha</artifactId>
|
|
|
+ <version>${kaptcha.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
+ <version>${hutool-all-version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.hibernate.validator</groupId>
|
|
|
+ <artifactId>hibernate-validator</artifactId>
|
|
|
+ <version>8.0.1.Final</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>transmittable-thread-local</artifactId>
|
|
|
+ <version>${alibaba.ttl.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.ai</groupId>
|
|
|
+ <artifactId>spring-ai-bom</artifactId>
|
|
|
+ <version>${spring-ai.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
</project>
|