<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<parent>
|
<artifactId>ztt-mes</artifactId>
|
<groupId>com.chinaztt.mes</groupId>
|
<version>1.0-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>mes-automationtest</artifactId>
|
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
</dependency>
|
<!-- scheduled所属资源为spring-context-support -->
|
<!-- https://mvnrepository.com/artifact/org.springframework/spring-context-support -->
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-context-support</artifactId>
|
<version>5.2.8.RELEASE</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.mybatis.spring.boot</groupId>
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
<version>2.1.3</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.73</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpcore</artifactId>
|
<version>4.4.13</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.12</version>
|
</dependency>
|
|
<!--excel-->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>3.11</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>3.11</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
|
<dependency>
|
<groupId>org.seleniumhq.selenium</groupId>
|
<artifactId>selenium-java</artifactId>
|
<version>3.141.59</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
|
<dependency>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
<version>3.6.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<scope>runtime</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
<exclusions>
|
<exclusion>
|
<groupId>org.junit.vintage</groupId>
|
<artifactId>junit-vintage-engine</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>com.vaadin.external.google</groupId>
|
<artifactId>android-json</artifactId>
|
<version>0.0.20131108.vaadin1</version>
|
<scope>compile</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-test</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
<version>29.0-jre</version>
|
</dependency>
|
</dependencies>
|
|
</project>
|