From d7f8ddfa0b6553ebee69491a93fff2a3b648562a Mon Sep 17 00:00:00 2001 From: jsa34 <31512041+jsa34@users.noreply.github.com> Date: Tue, 17 Jul 2018 22:26:23 +0100 Subject: [PATCH 1/5] Update jenkins version --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 3ae7398..d24d2eb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ version=2.27-SNAPSHOT -allureVersion=2.4.1 \ No newline at end of file +allureVersion=2.6.0 From cad453b9522c31472eb783509cac8312334cc77b Mon Sep 17 00:00:00 2001 From: jsa34 <31512041+jsa34@users.noreply.github.com> Date: Wed, 18 Jul 2018 21:21:12 +0100 Subject: [PATCH 2/5] Update to java 8 Update to java 8 to avoid separating gradle build --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index fac5616..b1b7fdb 100644 --- a/build.gradle +++ b/build.gradle @@ -25,14 +25,14 @@ task wrapper(type: Wrapper) { } compileJava { - sourceCompatibility = 1.7 - targetCompatibility = 1.7 + sourceCompatibility = 1.8 + targetCompatibility = 1.8 options.encoding = 'UTF-8' } compileTestJava { - sourceCompatibility = 1.7 - targetCompatibility = 1.7 + sourceCompatibility = 1.8 + targetCompatibility = 1.8 options.encoding = 'UTF-8' } @@ -87,4 +87,4 @@ dependencies { jenkinsTest 'org.jenkins-ci.plugins.workflow:workflow-durable-task-step:2.4@jar' jenkinsTest "org.jenkins-ci.ui:jquery-detached:1.2.1:core-assets@jar" -} \ No newline at end of file +} From 679c0e29bb64eb685feadb73ecebc3b09c23969c Mon Sep 17 00:00:00 2001 From: jsa34 <31512041+jsa34@users.noreply.github.com> Date: Wed, 18 Jul 2018 21:24:40 +0100 Subject: [PATCH 3/5] Revert Revert to 1.7 java --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index b1b7fdb..442bb55 100644 --- a/build.gradle +++ b/build.gradle @@ -25,14 +25,14 @@ task wrapper(type: Wrapper) { } compileJava { - sourceCompatibility = 1.8 - targetCompatibility = 1.8 + sourceCompatibility = 1.7 + targetCompatibility = 1.7 options.encoding = 'UTF-8' } compileTestJava { - sourceCompatibility = 1.8 - targetCompatibility = 1.8 + sourceCompatibility = 1.7 + targetCompatibility = 1.7 options.encoding = 'UTF-8' } From 33babc1c23f99df8a4b3f5d3a4d5766dd0e880de Mon Sep 17 00:00:00 2001 From: jsa34 <31512041+jsa34@users.noreply.github.com> Date: Mon, 25 Feb 2019 09:01:45 +0000 Subject: [PATCH 4/5] update to latest allure version --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index b29a45d..267f933 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ version=2.28-SNAPSHOT -allureVersion=2.8.0 +allureVersion=2.10.0 From e76ffcc40a10479a6892cef4f7113a0342859878 Mon Sep 17 00:00:00 2001 From: jsa34 <31512041+jsa34@users.noreply.github.com> Date: Mon, 25 Feb 2019 09:05:54 +0000 Subject: [PATCH 5/5] update allure download loc --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 442bb55..88ec8a0 100644 --- a/build.gradle +++ b/build.gradle @@ -41,7 +41,7 @@ tasks.withType(Javadoc) { } task downloadAllure(type: Download) { - src "https://dl.bintray.com/qameta/generic/io/qameta/allure/allure/${allureVersion}/allure-${allureVersion}.zip" + src "http://central.maven.org/maven2/io/qameta/allure/allure-commandline/${allureVersion}/allure-commandline-${allureVersion}.zip" dest "$buildDir/resources/test/allure-commandline.zip" }