2024-09-04 01:00:08 +08:00
|
|
|
<?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.youlai</groupId>
|
|
|
|
<artifactId>youlai-mall</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
</parent>
|
|
|
|
|
2024-09-06 22:26:49 +08:00
|
|
|
<artifactId>youlai-codegen</artifactId>
|
2024-09-04 01:00:08 +08:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2024-09-06 00:36:02 +08:00
|
|
|
<!-- Spring Cloud & Alibaba -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 注册中心 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 配置中心 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
</dependency>
|
2024-09-04 01:00:08 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>common-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>common-mybatis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2024-09-05 00:34:58 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
|
|
|
|
</dependency>
|
2024-09-04 01:00:08 +08:00
|
|
|
|
2024-09-06 00:36:02 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-generator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.velocity</groupId>
|
|
|
|
<artifactId>velocity-engine-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2024-09-07 19:52:33 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>system-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2024-09-04 01:00:08 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|