Guest User

Untitled

a guest
Aug 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?><project>
  2.  
  3. <modelVersion>4.0.0</modelVersion>
  4.  
  5. <dependencies>
  6.  
  7. <dependency>
  8.  
  9. <groupId>io.qameta.allure</groupId>
  10.  
  11. <artifactId>allure-cucumber-jvm</artifactId>
  12.  
  13. <version>2.7.0</version>
  14.  
  15. </dependency>
  16.  
  17. </dependencies>
  18.  
  19. <build>
  20.  
  21. <plugins>
  22.  
  23. <plugin>
  24.  
  25. <groupId>org.apache.maven.plugins</groupId>
  26.  
  27. <artifactId>maven-surefire-plugin</artifactId>
  28.  
  29. <version>2.19.1</version>
  30.  
  31. <configuration>
  32. <argLine>
  33. -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
  34. -Dcucumber.options="--plugin io.qameta.allure.cucumberjvm.AllureCucumberJvm"
  35. </argLine>
  36. </configuration>
  37.  
  38. <dependencies>
  39.  
  40. <dependency>
  41.  
  42. <groupId>org.aspectj</groupId>
  43.  
  44. <artifactId>aspectjweaver</artifactId>
  45.  
  46. <version>1.7.4</version>
  47.  
  48. </dependency>
  49.  
  50. </dependencies>
  51.  
  52. </plugin>
  53.  
  54. <plugin>
  55. <groupId>io.qameta.allure</groupId>
  56. <artifactId>allure-maven</artifactId>
  57. <version>2.8</version>
  58. </plugin>
  59.  
  60. </plugins>
  61. </build>
  62. </project>
Add Comment
Please, Sign In to add comment