Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. plugins {
  2. id 'java'
  3. id "io.qameta.allure" version "2.8.1"
  4. }
  5.  
  6. group 'org.work.shop'
  7. version '1.0-SNAPSHOT'
  8.  
  9. sourceCompatibility = 1.8
  10.  
  11. repositories {
  12. mavenCentral()
  13. jcenter()
  14. }
  15.  
  16. dependencies {
  17. testCompile group: 'io.rest-assured', name: 'rest-assured', version: '4.1.0'
  18. testCompile group: 'org.testng', name: 'testng', version: '7.0.0'
  19. testCompile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
  20. testCompile 'io.appium:java-client:7.2.0'
  21. testCompile "ru.yandex.qatools.allure:allure-testng-adaptor:1.5.4"
  22. testCompile "io.qameta.allure:allure-gradle:2.8.1"
  23. }
  24.  
  25. test {
  26. useTestNG() {
  27. suites 'testng.xml'
  28. }
  29. testLogging {
  30. events "PASSED", "STARTED", "FAILED", "SKIPPED"
  31. }
  32. systemProperty 'env', System.getProperty('env', 'all')
  33. }
  34.  
  35. allure {
  36. version = '2.2.1'
  37. autoconfigure = true
  38. aspectjweaver = true
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement