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-12 10:19:57 +08:00
|
|
|
<artifactId>services</artifactId>
|
2022-10-10 13:41:39 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
2023-04-13 17:15:15 +08:00
|
|
|
<artifactId>metersphere-ui-test</artifactId>
|
2023-04-12 10:19:57 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
<name>ui-test</name>
|
|
|
|
<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-04-18 16:02:58 +08:00
|
|
|
<!-- selenium包 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.metersphere</groupId>
|
|
|
|
<artifactId>jmeter-plugins-webdriver</artifactId>
|
|
|
|
<version>${jmeter-plugins-webdriver.version}</version>
|
2023-04-18 16:21:16 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.jmeter</groupId>
|
|
|
|
<artifactId>ApacheJMeter_core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-nop</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>geronimo-spec-javamail</artifactId>
|
|
|
|
<groupId>geronimo-spec</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>websocket-client</artifactId>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2023-06-25 11:55:02 +08:00
|
|
|
|
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>
|
|
|
|
<configurationFile>src/main/resources/uiGeneratorConfig.xml</configurationFile>
|
|
|
|
</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>
|