2026-01-16 01:35:25 +08:00
|
|
|
<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>cn.qihangerp.service</groupId>
|
|
|
|
|
<artifactId>service</artifactId>
|
|
|
|
|
<version>2.0.0</version>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>service</name>
|
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.qihangerp.service</groupId>
|
|
|
|
|
<artifactId>interfaces</artifactId>
|
|
|
|
|
<version>2.0.0</version>
|
|
|
|
|
</dependency>
|
2026-01-16 01:39:02 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.qihangerp.mapper</groupId>
|
|
|
|
|
<artifactId>mapper</artifactId>
|
|
|
|
|
<version>2.0.0</version>
|
|
|
|
|
</dependency>
|
2026-01-16 01:35:25 +08:00
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>cn.qihangerp.core</groupId>-->
|
|
|
|
|
<!-- <artifactId>common</artifactId>-->
|
|
|
|
|
<!-- <version>1.0</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
|
|
|
<version>3.5.5</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
<version>3.12.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
|
<version>2.16.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.18.30</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</project>
|