Index: build.gradle =================================================================== diff -u -r33557 -r33708 --- build.gradle (.../build.gradle) (revision 33557) +++ build.gradle (.../build.gradle) (revision 33708) @@ -11,9 +11,13 @@ println "运行的gradle版本: $gradle.gradleVersion" buildscript { - repositories { mavenCentral() } + repositories { + mavenCentral() + jcenter() + } dependencies { - classpath 'org.apache.commons:commons-configuration2:2.1.1', 'commons-beanutils:commons-beanutils:1.9.3','org.tmatesoft.svnkit:svnkit:1.10.1' + classpath 'org.apache.commons:commons-configuration2:2.1.1', 'commons-beanutils:commons-beanutils:1.9.3','org.tmatesoft.svnkit:svnkit:1.10.1' + classpath "io.qameta.allure:allure-gradle:2.8.1" } } @@ -206,6 +210,7 @@ subprojects { apply plugin: 'java' apply plugin: 'eclipse' + apply plugin: 'io.qameta.allure' ext.packageName = 'com.forgon' @@ -239,6 +244,13 @@ } + allure { + version = '2.17.0' + autoconfigure = true + aspectjweaver = true + allureJavaVersion = '2.17.0' + } + compileTestJava { sourceCompatibility = jdkversion targetCompatibility = jdkversion @@ -1235,6 +1247,9 @@ compile group: 'org.seleniumhq.selenium', name: 'selenium-server-standalone', version: '3.141.59' + compile group: 'io.qameta.allure', name: 'allure-java-commons', version: '2.17.0' + compile group: 'io.qameta.allure', name: 'allure-model', version: '2.17.0' + compile group: 'com.github.stephenc.monte', name: 'monte-screen-recorder', version: '0.7.7.0' compile group: 'sun', name: 'jdbc-odbc', version: '1.0'