|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>Aug2019RestAssuredAPIFW</groupId> |
| 6 | + <artifactId>Aug2019RestAssuredAPIFW</artifactId> |
| 7 | + <version>0.0.1-SNAPSHOT</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + |
| 10 | + <name>Aug2019RestAssuredAPIFW</name> |
| 11 | + <url>http://maven.apache.org</url> |
| 12 | + |
| 13 | + <properties> |
| 14 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | + <aspectj.version>1.8.10</aspectj.version> |
| 16 | + |
| 17 | + </properties> |
| 18 | + |
| 19 | + <build> |
| 20 | + <plugins> |
| 21 | + <plugin> |
| 22 | + <groupId>org.apache.maven.plugins</groupId> |
| 23 | + <artifactId>maven-compiler-plugin</artifactId> |
| 24 | + <version>3.8.1</version> |
| 25 | + <configuration> |
| 26 | + <source>1.8</source> |
| 27 | + <target>1.8</target> |
| 28 | + </configuration> |
| 29 | + </plugin> |
| 30 | + |
| 31 | + <plugin> |
| 32 | + <groupId>org.apache.maven.plugins</groupId> |
| 33 | + <artifactId>maven-surefire-plugin</artifactId> |
| 34 | + <version>2.20</version> |
| 35 | + <configuration> |
| 36 | + <useSystemClassLoader>false</useSystemClassLoader> |
| 37 | + |
| 38 | + <suiteXmlFiles> |
| 39 | + <suiteXmlFile>src/test/resources/testrunner/testng.xml</suiteXmlFile> |
| 40 | + </suiteXmlFiles> |
| 41 | + <argLine> |
| 42 | + -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar" |
| 43 | + </argLine> |
| 44 | + </configuration> |
| 45 | + |
| 46 | + <dependencies> |
| 47 | + <dependency> |
| 48 | + <groupId>org.aspectj</groupId> |
| 49 | + <artifactId>aspectjweaver</artifactId> |
| 50 | + <version>${aspectj.version}</version> |
| 51 | + </dependency> |
| 52 | + </dependencies> |
| 53 | + |
| 54 | + </plugin> |
| 55 | + |
| 56 | + </plugins> |
| 57 | + </build> |
| 58 | + |
| 59 | + <dependencies> |
| 60 | + |
| 61 | + <!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured --> |
| 62 | + <dependency> |
| 63 | + <groupId>io.rest-assured</groupId> |
| 64 | + <artifactId>rest-assured</artifactId> |
| 65 | + <version>4.0.0</version> |
| 66 | + <scope>compile</scope> |
| 67 | + </dependency> |
| 68 | + |
| 69 | + <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind --> |
| 70 | + <dependency> |
| 71 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 72 | + <artifactId>jackson-databind</artifactId> |
| 73 | + <version>2.9.9.3</version> |
| 74 | + </dependency> |
| 75 | + |
| 76 | + <!-- https://mvnrepository.com/artifact/io.rest-assured/json-schema-validator --> |
| 77 | + <dependency> |
| 78 | + <groupId>io.rest-assured</groupId> |
| 79 | + <artifactId>json-schema-validator</artifactId> |
| 80 | + <version>4.0.0</version> |
| 81 | + </dependency> |
| 82 | + |
| 83 | + <!-- https://mvnrepository.com/artifact/org.testng/testng --> |
| 84 | + <dependency> |
| 85 | + <groupId>org.testng</groupId> |
| 86 | + <artifactId>testng</artifactId> |
| 87 | + <version>6.14.3</version> |
| 88 | + <scope>compile</scope> |
| 89 | + </dependency> |
| 90 | + |
| 91 | + |
| 92 | + <dependency> |
| 93 | + <groupId>org.apache.commons</groupId> |
| 94 | + <artifactId>commons-io</artifactId> |
| 95 | + <version>1.3.2</version> |
| 96 | + </dependency> |
| 97 | + |
| 98 | + <dependency> |
| 99 | + <groupId>org.apache.poi</groupId> |
| 100 | + <artifactId>poi</artifactId> |
| 101 | + <version>3.9</version> |
| 102 | + </dependency> |
| 103 | + <dependency> |
| 104 | + <groupId>org.apache.poi</groupId> |
| 105 | + <artifactId>poi-ooxml</artifactId> |
| 106 | + <version>3.9</version> |
| 107 | + </dependency> |
| 108 | + <dependency> |
| 109 | + <groupId>org.apache.poi</groupId> |
| 110 | + <artifactId>poi-ooxml-schemas</artifactId> |
| 111 | + <version>3.9</version> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>org.apache.poi</groupId> |
| 115 | + <artifactId>poi-scratchpad</artifactId> |
| 116 | + <version>3.9</version> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>org.apache.poi</groupId> |
| 120 | + <artifactId>ooxml-schemas</artifactId> |
| 121 | + <version>1.1</version> |
| 122 | + </dependency> |
| 123 | + |
| 124 | + <dependency> |
| 125 | + <groupId>org.apache.poi</groupId> |
| 126 | + <artifactId>openxml4j</artifactId> |
| 127 | + <version>1.0-beta</version> |
| 128 | + </dependency> |
| 129 | + |
| 130 | + <dependency> |
| 131 | + <groupId>com.aventstack</groupId> |
| 132 | + <artifactId>extentreports</artifactId> |
| 133 | + <version>3.1.5</version> |
| 134 | + </dependency> |
| 135 | + |
| 136 | + <dependency> |
| 137 | + <groupId>io.qameta.allure</groupId> |
| 138 | + <artifactId>allure-testng</artifactId> |
| 139 | + <version>2.12.0</version> |
| 140 | + </dependency> |
| 141 | +<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver --> |
| 142 | +<dependency> |
| 143 | + <groupId>org.aspectj</groupId> |
| 144 | + <artifactId>aspectjweaver</artifactId> |
| 145 | + <version>1.8.10</version> |
| 146 | +</dependency> |
| 147 | +<!-- https://mvnrepository.com/artifact/com.jayway.jsonpath/json-path --> |
| 148 | +<dependency> |
| 149 | + <groupId>com.jayway.jsonpath</groupId> |
| 150 | + <artifactId>json-path</artifactId> |
| 151 | + <version>2.4.0</version> |
| 152 | +</dependency> |
| 153 | + |
| 154 | + |
| 155 | + </dependencies> |
| 156 | +</project> |
0 commit comments