Advertisement
Guest User

POM File

a guest
May 24th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.90 KB | None | 0 0
  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>com.arraylearn.selenium.array</groupId>
  6. <artifactId>array</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9.  
  10. <name>array</name>
  11. <url>http://maven.apache.org</url>
  12.  
  13. <properties>
  14. <aspectj.version>1.8.13</aspectj.version>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17.  
  18. <build>
  19. <plugins>
  20. <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
  21. <plugin>
  22. <artifactId>maven-compiler-plugin</artifactId>
  23. <version>3.7.0</version>
  24. <configuration>
  25. <source>1.8</source>
  26. <target>1.8</target>
  27. </configuration>
  28. </plugin>
  29. <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-surefire-plugin -->
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-surefire-plugin</artifactId>
  33. <version>2.20</version>
  34. <configuration>
  35. <suiteXmlFiles>
  36. <suiteXmlFile>src/test/resources/placeholder/placeholder.xml
  37. </suiteXmlFile>
  38. </suiteXmlFiles>
  39. <argLine>
  40. -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
  41. </argLine>
  42. </configuration>
  43. <dependencies>
  44. <dependency>
  45. <groupId>org.aspectj</groupId>
  46. <artifactId>aspectjweaver</artifactId>
  47. <version>${aspectj.version}</version>
  48. </dependency>
  49. </dependencies>
  50. </plugin>
  51. <!-- https://mvnrepository.com/artifact/io.qameta.allure/allure-maven -->
  52. <plugin>
  53. <groupId>io.qameta.allure</groupId>
  54. <artifactId>allure-maven</artifactId>
  55. <version>2.9</version>
  56. </plugin>
  57. </plugins>
  58. </build>
  59.  
  60. <dependencies>
  61. <!-- https://mvnrepository.com/artifact/io.github.bonigarcia/webdrivermanager -->
  62. <dependency>
  63. <groupId>io.github.bonigarcia</groupId>
  64. <artifactId>webdrivermanager</artifactId>
  65. <version>2.2.4</version>
  66. </dependency>
  67. <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
  68. <dependency>
  69. <groupId>org.seleniumhq.selenium</groupId>
  70. <artifactId>selenium-java</artifactId>
  71. <version>3.12.0</version>
  72. </dependency>
  73. <!-- https://mvnrepository.com/artifact/org.testng/testng -->
  74. <dependency>
  75. <groupId>org.testng</groupId>
  76. <artifactId>testng</artifactId>
  77. <version>6.14.3</version>
  78. </dependency>
  79. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  80. <dependency>
  81. <groupId>mysql</groupId>
  82. <artifactId>mysql-connector-java</artifactId>
  83. <version>8.0.11</version>
  84. </dependency>
  85. <!-- https://mvnrepository.com/artifact/ru.yandex.qatools.ashot/ashot -->
  86. <dependency>
  87. <groupId>ru.yandex.qatools.ashot</groupId>
  88. <artifactId>ashot</artifactId>
  89. <version>1.5.4</version>
  90. </dependency>
  91. <!-- https://mvnrepository.com/artifact/io.qameta.allure/allure-testng -->
  92. <dependency>
  93. <groupId>io.qameta.allure</groupId>
  94. <artifactId>allure-testng</artifactId>
  95. <version>2.6.0</version>
  96. </dependency>
  97. <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
  98. <dependency>
  99. <groupId>org.slf4j</groupId>
  100. <artifactId>slf4j-simple</artifactId>
  101. <version>1.7.25</version>
  102. <scope>test</scope>
  103. </dependency>
  104. <!-- https://mvnrepository.com/artifact/com.automation-remarks/video-recorder-testng -->
  105. <dependency>
  106. <groupId>com.automation-remarks</groupId>
  107. <artifactId>video-recorder-testng</artifactId>
  108. <version>1.8</version>
  109. </dependency>
  110. </dependencies>
  111.  
  112. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement