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>services</artifactId>
|
2022-10-10 13:41:39 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
2023-06-02 16:52:53 +08:00
|
|
|
<artifactId>metersphere-case-management</artifactId>
|
2023-04-06 14:50:17 +08:00
|
|
|
<version>${revision}</version>
|
2023-06-02 16:52:53 +08:00
|
|
|
<name>case-management</name>
|
2023-04-06 14:50:17 +08:00
|
|
|
<properties>
|
|
|
|
</properties>
|
2022-10-10 13:41:39 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.metersphere</groupId>
|
2023-04-13 17:15:15 +08:00
|
|
|
<artifactId>metersphere-sdk</artifactId>
|
2022-10-10 13:41:39 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2023-09-15 14:38:50 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.metersphere</groupId>
|
|
|
|
<artifactId>metersphere-system-setting</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.metersphere</groupId>
|
|
|
|
<artifactId>metersphere-project-management</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2022-10-10 13:41:39 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2023-06-14 17:30:30 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.mybatis.generator</groupId>
|
|
|
|
<artifactId>mybatis-generator-maven-plugin</artifactId>
|
|
|
|
<version>1.3.7</version>
|
|
|
|
<configuration>
|
|
|
|
<verbose>true</verbose>
|
|
|
|
<overwrite>true</overwrite>
|
2023-07-31 14:41:21 +08:00
|
|
|
<configurationFile>src/main/resources/functionalGeneratorConfig.xml</configurationFile>
|
2023-06-14 17:30:30 +08:00
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>8.0.16</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.itfsw</groupId>
|
|
|
|
<artifactId>mybatis-generator-plugin</artifactId>
|
|
|
|
<version>1.3.10</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.metersphere</groupId>
|
|
|
|
<artifactId>mybatis-tools</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-10-10 13:41:39 +08:00
|
|
|
|
|
|
|
</project>
|