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>
|
2023-10-24 14:50:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.metersphere</groupId>
|
|
|
|
<artifactId>metersphere-system-setting</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
<classifier>tests</classifier>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-12-21 09:15:52 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.metersphere</groupId>
|
|
|
|
<artifactId>metersphere-provider</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2024-08-08 10:20:38 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-impl</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
|
</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>
|
2024-01-30 10:49:39 +08:00
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
2024-01-29 12:08:30 +08:00
|
|
|
<version>${mysql-connector-java.version}</version>
|
2023-06-14 17:30:30 +08:00
|
|
|
</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>
|