54 lines
1.8 KiB
XML
54 lines
1.8 KiB
XML
<?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.czg</groupId>
|
|
<artifactId>cash</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
|
|
<name>实现层</name>
|
|
<artifactId>cash-service</artifactId>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>account-service</module>
|
|
<module>order-service</module>
|
|
<module>product-service</module>
|
|
<module>system-service</module>
|
|
<module>code-generator</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.czg</groupId>
|
|
<artifactId>cash-common</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.czg</groupId>
|
|
<artifactId>cash-sdk</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-spring-boot3-starter</artifactId>
|
|
<version>1.10.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-processor</artifactId>
|
|
<version>1.10.6</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |