MeterSphere/backend/framework/domain/pom.xml

25 lines
888 B
XML
Raw Normal View History

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>
<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-04-18 12:15:34 +08:00
<artifactId>mybatis-plus-annotation</artifactId>
2023-04-18 11:19:45 +08:00
<groupId>com.baomidou</groupId>
<version>${mybatis-plus-starter.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
2022-10-10 13:41:39 +08:00
</project>