2020-12-05 17:57:04 +08:00
|
|
|
|
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
2020-12-14 15:33:19 +08:00
|
|
|
|
<groupId>pres.pyq</groupId>
|
|
|
|
|
<artifactId>autest</artifactId>
|
|
|
|
|
<version>2.0.0-debug</version>
|
2020-12-05 17:57:04 +08:00
|
|
|
|
<packaging>jar</packaging>
|
2020-12-14 15:33:19 +08:00
|
|
|
|
<url>https://gitee.com/pyqone/autest</url>
|
|
|
|
|
<name>autest</name>
|
2020-12-05 17:57:04 +08:00
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2020-12-11 10:36:08 +08:00
|
|
|
|
<!-- 编译编码 -->
|
|
|
|
|
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
2020-12-05 17:57:04 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2020-12-14 15:33:19 +08:00
|
|
|
|
<!-- selenium工具 -->
|
2020-01-17 17:46:43 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
|
<artifactId>selenium-java</artifactId>
|
|
|
|
|
<version>3.141.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-12-14 15:33:19 +08:00
|
|
|
|
<!-- csv读取工具 -->
|
2020-01-17 17:46:43 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.opencsv</groupId>
|
|
|
|
|
<artifactId>opencsv</artifactId>
|
|
|
|
|
<version>4.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-12-14 15:33:19 +08:00
|
|
|
|
<!-- office读取工具POI -->
|
2020-01-17 17:46:43 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi</artifactId>
|
|
|
|
|
<version>3.17</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
<version>3.17</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-scratchpad</artifactId>
|
|
|
|
|
<version>3.17</version>
|
|
|
|
|
</dependency>
|
2020-12-14 15:33:19 +08:00
|
|
|
|
|
|
|
|
|
<!-- xml解析工具 -->
|
2020-01-17 17:46:43 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
|
<version>1.6.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
|
|
<version>1.1-beta-6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
<version>3.7</version>
|
|
|
|
|
</dependency>
|
2020-12-14 15:33:19 +08:00
|
|
|
|
|
|
|
|
|
<!-- 图片识别工具 -->
|
2020-01-17 17:46:43 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.tess4j</groupId>
|
|
|
|
|
<artifactId>tess4j</artifactId>
|
2020-06-19 19:16:38 +08:00
|
|
|
|
<version>4.5.1</version>
|
2020-01-17 17:46:43 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-12-14 15:33:19 +08:00
|
|
|
|
<!-- json工具 -->
|
2020-01-17 17:46:43 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
<version>1.2.61</version>
|
|
|
|
|
</dependency>
|
2020-12-05 17:57:04 +08:00
|
|
|
|
|
2020-08-01 18:48:04 +08:00
|
|
|
|
<!-- 数据库连接依赖包 -->
|
|
|
|
|
<dependency>
|
2020-12-05 17:57:04 +08:00
|
|
|
|
<groupId>com.github.noraui</groupId>
|
|
|
|
|
<artifactId>ojdbc7</artifactId>
|
|
|
|
|
<version>12.1.0.2</version>
|
2020-08-01 18:48:04 +08:00
|
|
|
|
</dependency>
|
2020-12-05 17:57:04 +08:00
|
|
|
|
|
2020-04-30 18:09:47 +08:00
|
|
|
|
<!-- HttpClient 用于接口测试 -->
|
|
|
|
|
<dependency>
|
2020-12-05 17:57:04 +08:00
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
<version>4.5.12</version>
|
2020-04-30 18:09:47 +08:00
|
|
|
|
</dependency>
|
2020-12-05 17:57:04 +08:00
|
|
|
|
|
2020-06-26 16:57:34 +08:00
|
|
|
|
<!-- 解析html -->
|
|
|
|
|
<dependency>
|
2020-12-05 17:57:04 +08:00
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
|
<version>1.13.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--spring aop + aspectj 切面 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
|
<version>5.2.7.RELEASE</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
<version>5.2.7.RELEASE</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
|
<artifactId>aspectjrt</artifactId>
|
|
|
|
|
<version>1.9.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
|
<artifactId>aspectjweaver</artifactId>
|
|
|
|
|
<version>1.9.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-12-14 15:33:19 +08:00
|
|
|
|
<!-- TestNG依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
|
<artifactId>testng</artifactId>
|
|
|
|
|
<version>7.3.0</version>
|
|
|
|
|
<scope>test</scope>
|
2020-12-05 17:57:04 +08:00
|
|
|
|
</dependency>
|
2020-01-17 17:46:43 +08:00
|
|
|
|
</dependencies>
|
2020-12-05 17:57:04 +08:00
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2020-12-11 10:36:08 +08:00
|
|
|
|
<!-- 生成javadoc -->
|
2020-12-05 17:57:04 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<version>3.0.0</version>
|
2020-12-08 14:56:47 +08:00
|
|
|
|
<configuration>
|
|
|
|
|
<aggregate>true</aggregate>
|
2020-12-11 10:36:08 +08:00
|
|
|
|
<doclint>none</doclint>
|
2020-12-08 14:56:47 +08:00
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- 生成sources源码包的插件 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<attach>true</attach>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2020-12-05 17:57:04 +08:00
|
|
|
|
</plugin>
|
2020-12-14 15:33:19 +08:00
|
|
|
|
<!-- 打包插件,jar包包含依赖包 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
<version>2.4.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2020-12-05 17:57:04 +08:00
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2020-01-17 17:46:43 +08:00
|
|
|
|
</project>
|