Skip to content

Commit cfe48c2

Browse files
authored
Merge pull request #18 from pawan-lambda/master
dependencies version upgrade
2 parents 63e5150 + f83af5d commit cfe48c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ plugins {
3030

3131
group = 'org.jenkins-ci.plugins'
3232

33-
version = '1.20.3'
33+
version = '1.20.4'
3434

3535
description = 'LambdaTest Plugin is used to run automated selenium tests on LambdaTest Cloud'
3636

@@ -128,7 +128,7 @@ dependencies {
128128
compile group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.4.10'
129129

130130
// https://mvnrepository.com/artifact/org.json/json
131-
compile group: 'org.json', name: 'json', version: '20090211'
131+
compile group: 'org.json', name: 'json', version: '20230227'
132132

133133

134134
// Use JUnit test framework

src/main/java/com/lambdatest/jenkins/pipeline/report/ReportBuildAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class ReportBuildAction extends AbstractReportBuildAction {
2828
private String authString;
2929
private String buildName;
3030
private String product;
31-
List < JSONObject > result = new ArrayList < JSONObject > ();
31+
private transient List < JSONObject > result = new ArrayList < JSONObject > ();
3232

3333
public ReportBuildAction(final Run < ? , ? > build, String name, String password, String buildName, ProjectType product) {
3434
super();

0 commit comments

Comments
 (0)