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-04-18 14:35:14 +08:00
|
|
|
<dependency>
|
2023-05-23 10:27:35 +08:00
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-jdbc</artifactId>
|
2023-04-18 14:35:14 +08:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2023-05-12 10:49:32 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.swagger.parser.v3</groupId>
|
|
|
|
<artifactId>swagger-parser</artifactId>
|
|
|
|
<version>${swagger-parser.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>swagger-core</artifactId>
|
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2023-04-18 11:19:45 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2022-10-10 13:41:39 +08:00
|
|
|
</project>
|