Advertisement
Guest User

Untitled

a guest
Nov 18th, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.45 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.  
  6.     <groupId>com.testujpl</groupId>
  7.     <artifactId>selenium-start</artifactId>
  8.     <version>0.0.1-SNAPSHOT</version>
  9.     <packaging>jar</packaging>
  10.  
  11.     <name>selenium-start</name>
  12.     <description>Selenium start project</description>
  13.  
  14.     <parent>
  15.         <groupId>org.springframework.boot</groupId>
  16.         <artifactId>spring-boot-starter-parent</artifactId>
  17.         <version>2.1.0.RELEASE</version>
  18.         <relativePath/> <!-- lookup parent from repository -->
  19.     </parent>
  20.  
  21.     <properties>
  22.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23.         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24.         <java.version>1.8</java.version>
  25.     </properties>
  26.  
  27.     <dependencies>
  28.         <dependency>
  29.             <groupId>org.springframework.boot</groupId>
  30.             <artifactId>spring-boot-starter</artifactId>
  31.         </dependency>
  32.  
  33.         <dependency>
  34.             <groupId>org.projectlombok</groupId>
  35.             <artifactId>lombok</artifactId>
  36.             <optional>true</optional>
  37.         </dependency>
  38.         <dependency>
  39.             <groupId>org.springframework.boot</groupId>
  40.             <artifactId>spring-boot-starter-test</artifactId>
  41.             <scope>test</scope>
  42.         </dependency>
  43.         <dependency>
  44.             <groupId>org.seleniumhq.selenium</groupId>
  45.             <artifactId>selenium-java</artifactId>
  46.             <version>3.141.59</version>
  47.         </dependency>
  48.         <dependency>
  49.             <groupId>org.awaitility</groupId>
  50.             <artifactId>awaitility</artifactId>
  51.             <version>2.0.0</version>
  52.             <scope>test</scope>
  53.         </dependency>
  54.         <dependency>
  55.             <groupId>org.awaitility</groupId>
  56.             <artifactId>awaitility</artifactId>
  57.             <version>2.0.0</version>
  58.         </dependency>
  59.         <dependency>
  60.             <groupId>ru.yandex.qatools.allure</groupId>
  61.             <artifactId>allure-junit-adaptor</artifactId>
  62.             <version>1.5.4</version>
  63.             <scope>test</scope>
  64.         </dependency>
  65.         <dependency>
  66.             <groupId>ru.yandex.qatools.allure</groupId>
  67.             <artifactId>allure-maven-plugin</artifactId>
  68.             <version>2.6</version>
  69.         </dependency>
  70.     </dependencies>
  71.  
  72.     <build>
  73.         <plugins>
  74.             <plugin>
  75.                 <groupId>org.springframework.boot</groupId>
  76.                 <artifactId>spring-boot-maven-plugin</artifactId>
  77.             </plugin>
  78.             <plugin>
  79.                 <groupId>org.apache.maven.plugins</groupId>
  80.                 <artifactId>maven-surefire-plugin</artifactId>
  81.                 <version>2.20</version>
  82.                 <configuration>
  83.                     <includes>
  84.                         <include>**/*Test.java</include>
  85.                     </includes>
  86.                     <argLine>
  87.                         -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
  88.                     </argLine>
  89.                     <properties>
  90.                         <property>
  91.                             <name>listener</name>
  92.                             <value>ru.yandex.qatools.allure.junit.AllureRunListener</value>
  93.                         </property>
  94.                     </properties>
  95.                 </configuration>
  96.                 <dependencies>
  97.                     <dependency>
  98.                         <groupId>org.aspectj</groupId>
  99.                         <artifactId>aspectjweaver</artifactId>
  100.                         <version>${aspectj.version}</version>
  101.                     </dependency>
  102.                 </dependencies>
  103.             </plugin>
  104.         </plugins>
  105.     </build>
  106.  
  107.     <reporting>
  108.         <excludeDefaults>true</excludeDefaults>
  109.         <plugins>
  110.             <plugin>
  111.                 <groupId>ru.yandex.qatools.allure</groupId>
  112.                 <artifactId>allure-maven-plugin</artifactId>
  113.                 <version>2.6</version>
  114.             </plugin>
  115.         </plugins>
  116.     </reporting>
  117.  
  118.  
  119. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement