qihang-ecom-erp-open/core/model/pom.xml

76 lines
3.1 KiB
XML
Raw Normal View History

2025-09-18 07:48:21 +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>
2025-09-18 08:00:20 +08:00
<groupId>cn.qihangerp.core</groupId>
<artifactId>core</artifactId>
<version>1.0</version>
2025-09-18 07:48:21 +08:00
</parent>
<groupId>cn.qihangerp.model</groupId>
<artifactId>model</artifactId>
2025-09-18 09:14:15 +08:00
<version>2.0.0</version>
2025-09-18 07:48:21 +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>
2025-09-18 08:31:07 +08:00
<dependency>
<groupId>cn.qihangerp.core</groupId>
<artifactId>common</artifactId>
<version>1.0</version>
</dependency>
2025-09-18 07:48:21 +08:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>jakarta.platform</groupId>-->
<!-- <artifactId>jakarta.jakartaee-api</artifactId>-->
<!-- <version>9.1.0</version>-->
<!-- &lt;!&ndash; <scope>provided</scope>&ndash;&gt;-->
<!-- </dependency>-->
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>9.0.0.Final</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>1.6.3</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.mapstruct</groupId>-->
<!-- <artifactId>mapstruct-processor</artifactId>-->
<!-- <version>1.6.3</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; 允许使用Lombok的Java Bean类中使用MapStruct注解 (Lombok 1.18.20+) &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>org.projectlombok</groupId>-->
<!-- <artifactId>lombok-mapstruct-binding</artifactId>-->
<!-- <version>0.2.0</version>-->
<!-- <scope>provided</scope>-->
<!-- </dependency>-->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.20</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
<version>2.2.36</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
<version>3.5.5</version>
</dependency>
</dependencies>
</project>