julia_v_iluhina

Untitled

Feb 5th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.67 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>.....</groupId>
  8.     <artifactId>......</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <properties>
  12.         <allure.version>1.5.0.RC2</allure.version>
  13.         <aspectj.version>1.8.8</aspectj.version>
  14.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15.     </properties>
  16.  
  17.     <dependencies>
  18.  
  19.         <dependency>
  20.             <groupId>com.codeborne</groupId>
  21.             <artifactId>selenide</artifactId>
  22.             <version>4.2</version>
  23.         </dependency>
  24.  
  25.         <dependency>
  26.             <groupId>junit</groupId>
  27.             <artifactId>junit</artifactId>
  28.             <version>4.12</version>
  29.         </dependency>
  30.  
  31.         <dependency>
  32.             <groupId>ru.yandex.qatools.allure</groupId>
  33.             <artifactId>allure-junit-adaptor</artifactId>
  34.             <version>${allure.version}</version>
  35.         </dependency>
  36.  
  37.     </dependencies>
  38.  
  39.     <build>
  40.         <plugins>
  41.             <plugin>
  42.                 <groupId>org.apache.maven.plugins</groupId>
  43.                 <artifactId>maven-surefire-plugin</artifactId>
  44.                 <version>2.19.1</version>
  45.                 <configuration>
  46.                     <argLine>
  47.                         -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
  48.                     </argLine>
  49.                     <properties>
  50.                         <property>
  51.                             <name>listener</name>
  52.                             <value>ru.yandex.qatools.allure.junit.AllureRunListener</value>
  53.                         </property>
  54.                     </properties>
  55.                 </configuration>
  56.                 <dependencies>
  57.                     <dependency>
  58.                         <groupId>org.aspectj</groupId>
  59.                         <artifactId>aspectjweaver</artifactId>
  60.                         <version>${aspectj.version}</version>
  61.                     </dependency>
  62.                 </dependencies>
  63.             </plugin>
  64.         </plugins>
  65.     </build>
  66.  
  67.     <reporting>
  68.         <excludeDefaults>true</excludeDefaults>
  69.         <plugins>
  70.             <plugin>
  71.                 <groupId>ru.yandex.qatools.allure</groupId>
  72.                 <artifactId>allure-maven-plugin</artifactId>
  73.                 <version>2.5</version>
  74.             </plugin>
  75.         </plugins>
  76.     </reporting>
  77.  
  78. </project>
Advertisement
Add Comment
Please, Sign In to add comment