108 lines
4.1 KiB
XML
108 lines
4.1 KiB
XML
<?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>
|
|
<artifactId>services</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<artifactId>metersphere-ui-test</artifactId>
|
|
<version>${revision}</version>
|
|
<name>ui-test</name>
|
|
<properties>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.metersphere</groupId>
|
|
<artifactId>metersphere-sdk</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<!-- selenium包 -->
|
|
<dependency>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
<artifactId>selenium-java</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>jakarta.activation</artifactId>
|
|
<groupId>com.sun.activation</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>async-http-client</artifactId>
|
|
<groupId>org.asynchttpclient</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
<artifactId>selenium-http-jdk-client</artifactId>
|
|
</dependency>
|
|
<!-- webdriver -->
|
|
<dependency>
|
|
<groupId>io.metersphere</groupId>
|
|
<artifactId>jmeter-plugins-webdriver</artifactId>
|
|
<version>${jmeter-plugins-webdriver.version}</version>
|
|
<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>
|
|
|
|
</dependencies>
|
|
|
|
<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>
|
|
|
|
</project>
|