2022-10-10 13:41:39 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>io.metersphere</groupId>
|
2023-04-06 14:50:17 +08:00
|
|
|
<artifactId>framework</artifactId>
|
2022-10-10 13:41:39 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
2023-04-13 17:15:15 +08:00
|
|
|
<artifactId>metersphere-domain</artifactId>
|
2022-10-10 13:41:39 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
<name>domain</name>
|
|
|
|
<description>domain</description>
|
|
|
|
|
2023-04-18 11:19:45 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2023-05-23 10:27:35 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
2023-04-18 11:19:45 +08:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2023-05-12 10:49:32 +08:00
|
|
|
<dependency>
|
2023-05-25 16:07:44 +08:00
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
|
|
<artifactId>swagger-annotations-jakarta</artifactId>
|
|
|
|
<version>${swagger.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
<version>${mybatis-starter.version}</version>
|
2023-05-12 10:49:32 +08:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2024-01-08 21:01:30 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
</dependency>
|
2023-04-18 11:19:45 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2022-10-10 13:41:39 +08:00
|
|
|
</project>
|