Guest User

Untitled

a guest
Aug 1st, 2022
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.03 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>ru.factorts</groupId>
  8. <artifactId>factor-esb-autotest</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <name>Factor-esb-autotest</name>
  11. <description>Check working capacity Factor-ESB</description>
  12.  
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <aspectj.version>1.9.2</aspectj.version>
  16.  
  17. <junit.jupiter.version>5.8.1</junit.jupiter.version>
  18. <junit.platform.version>1.8.1</junit.platform.version>
  19.  
  20. <allure.version>2.13.0</allure.version>
  21. <qameta.allure>2.13.6</qameta.allure>
  22. </properties>
  23.  
  24. <dependencies>
  25. <!--Подключение по ssh -->
  26. <dependency>
  27. <groupId>com.jcraft</groupId>
  28. <artifactId>jsch</artifactId>
  29. <version>0.1.55</version>
  30. </dependency>
  31.  
  32. <!-- https://mvnrepository.com/artifact/com.codeborne/selenide -->
  33. <dependency>
  34. <groupId>com.codeborne</groupId>
  35. <artifactId>selenide</artifactId>
  36. <version>5.20.4</version>
  37. </dependency>
  38.  
  39. <dependency>
  40. <groupId>org.selenide</groupId>
  41. <artifactId>selenide-selenoid</artifactId>
  42. <version>1.1.1</version>
  43. <scope>test</scope>
  44. </dependency>
  45.  
  46. <dependency>
  47. <groupId>org.junit.jupiter</groupId>
  48. <artifactId>junit-jupiter-engine</artifactId>
  49. <version>${junit.jupiter.version}</version>
  50. <scope>test</scope>
  51. </dependency>
  52.  
  53. <dependency>
  54. <groupId>org.junit.jupiter</groupId>
  55. <artifactId>junit-jupiter-api</artifactId>
  56. <version>${junit.jupiter.version}</version>
  57. <scope>test</scope>
  58. </dependency>
  59.  
  60. <dependency>
  61. <groupId>org.junit.jupiter</groupId>
  62. <artifactId>junit-jupiter-params</artifactId>
  63. <version>${junit.jupiter.version}</version>
  64. <scope>test</scope>
  65. </dependency>
  66.  
  67. <dependency>
  68. <groupId>org.junit.platform</groupId>
  69. <artifactId>junit-platform-suite</artifactId>
  70. <version>${junit.platform.version}</version>
  71. <scope>test</scope>
  72. </dependency>
  73.  
  74. <!-- https://mvnrepository.com/artifact/com.browserup/browserup-proxy-core -->
  75. <dependency>
  76. <groupId>com.browserup</groupId>
  77. <artifactId>browserup-proxy-core</artifactId>
  78. <version>2.1.1</version>
  79. </dependency>
  80.  
  81. <dependency>
  82. <groupId>org.projectlombok</groupId>
  83. <artifactId>lombok</artifactId>
  84. <version>1.18.22</version>
  85. <scope>provided</scope>
  86. </dependency>
  87.  
  88. <dependency>
  89. <groupId>io.qameta.allure</groupId>
  90. <artifactId>allure-junit5</artifactId>
  91. <version>${qameta.allure}</version>
  92. </dependency>
  93.  
  94. <!-- https://mvnrepository.com/artifact/io.qameta.allure/allure-selenide -->
  95. <dependency>
  96. <groupId>io.qameta.allure</groupId>
  97. <artifactId>allure-selenide</artifactId>
  98. <version>2.12.1</version>
  99. <!-- <scope>test</scope>-->
  100. </dependency>
  101.  
  102. <dependency>
  103. <groupId>commons-io</groupId>
  104. <artifactId>commons-io</artifactId>
  105. <version>2.4</version>
  106. </dependency>
  107.  
  108. <!-- Logging-->
  109. <dependency>
  110. <groupId>org.slf4j</groupId>
  111. <artifactId>slf4j-api</artifactId>
  112. <version>1.7.36</version>
  113. </dependency>
  114.  
  115. <dependency>
  116. <groupId>ch.qos.logback</groupId>
  117. <artifactId>logback-classic</artifactId>
  118. <version>1.2.11</version>
  119. </dependency>
  120.  
  121. <dependency>
  122. <groupId>org.slf4j</groupId>
  123. <artifactId>jul-to-slf4j</artifactId>
  124. <version>1.7.36</version>
  125. </dependency>
  126.  
  127. <dependency>
  128. <groupId>org.apache.logging.log4j</groupId>
  129. <artifactId>log4j-core</artifactId>
  130. <version>2.17.2</version>
  131. </dependency>
  132.  
  133. <!-- Logging-->
  134. <dependency>
  135. <groupId>org.aspectj</groupId>
  136. <artifactId>aspectjweaver</artifactId>
  137. <version>${aspectj.version}</version>
  138. </dependency>
  139.  
  140. <dependency>
  141. <groupId>io.rest-assured</groupId>
  142. <artifactId>rest-assured</artifactId>
  143. <version>3.3.0</version>
  144. <scope>compile</scope>
  145. </dependency>
  146.  
  147. <dependency>
  148. <groupId>org.gitlab4j</groupId>
  149. <artifactId>gitlab4j-api</artifactId>
  150. <version>4.18.0</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.junit.jupiter</groupId>
  154. <artifactId>junit-jupiter-api</artifactId>
  155. <version>5.8.1</version>
  156. <scope>compile</scope>
  157. </dependency>
  158. </dependencies>
  159.  
  160. <build>
  161. <plugins>
  162. <plugin>
  163. <groupId>io.qameta.allure</groupId>
  164. <artifactId>allure-maven</artifactId>
  165. <version>2.10.0</version>
  166. <configuration>
  167. <reportVersion>${allure.version}</reportVersion>
  168. <resultsDirectory>${basedir}/allure-results</resultsDirectory>
  169. <reportDirectory>${basedir}/target/allure-reports</reportDirectory>
  170. </configuration>
  171. </plugin>
  172. <plugin>
  173. <groupId>org.apache.maven.plugins</groupId>
  174. <artifactId>maven-compiler-plugin</artifactId>
  175. <version>3.8.1</version>
  176. <configuration>
  177. <source>10</source>
  178. <target>10</target>
  179. </configuration>
  180. </plugin>
  181. <plugin>
  182. <groupId>org.apache.maven.plugins</groupId>
  183. <artifactId>maven-surefire-plugin</artifactId>
  184. <version>3.0.0-M5</version>
  185. <configuration>
  186. <argLine>
  187. -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
  188. </argLine>
  189. </configuration>
  190. <dependencies>
  191. <dependency>
  192. <groupId>org.aspectj</groupId>
  193. <artifactId>aspectjweaver</artifactId>
  194. <version>${aspectj.version}</version>
  195. </dependency>
  196. </dependencies>
  197. </plugin>
  198. </plugins>
  199. </build>
  200. </project>
  201.  
Advertisement
Add Comment
Please, Sign In to add comment