File tree 6 files changed +159
-162
lines changed
src/main/java/com/epam/reportportal/extension/importing
6 files changed +159
-162
lines changed Original file line number Diff line number Diff line change 1
- version =1.0.0
1
+ version =1.0.1
2
2
description =Reinforce you ReportPortal instance with JUnit import functionality and easily upload your log files right to ReportPortal.
3
3
pluginId =junit
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ repositories {
38
38
39
39
dependencyManagement {
40
40
imports {
41
- mavenBom(releaseMode ? ' com.epam.reportportal:commons-bom:' + getProperty(' bom.version' ) : ' com.epam.reportportal:commons-bom:5.12.1 ' )
41
+ mavenBom(releaseMode ? ' com.epam.reportportal:commons-bom:' + getProperty(' bom.version' ) : ' com.epam.reportportal:commons-bom:5.12.3 ' )
42
42
}
43
43
}
44
44
@@ -48,10 +48,10 @@ dependencies {
48
48
implementation ' com.epam.reportportal:plugin-api'
49
49
annotationProcessor ' com.epam.reportportal:plugin-api'
50
50
} else {
51
- implementation ' com.github.reportportal:commons-dao:acf1ec7 '
52
- implementation ' com.github.reportportal:commons:c8ef09c '
53
- implementation ' com.github.reportportal:plugin-api:188792e '
54
- annotationProcessor ' com.github.reportportal:plugin-api:188792e '
51
+ implementation ' com.github.reportportal:commons-dao:develop-SNAPSHOT '
52
+ implementation ' com.github.reportportal:commons:develop-SNAPSHOT '
53
+ implementation ' com.github.reportportal:plugin-api:develop-SNAPSHOT '
54
+ annotationProcessor ' com.github.reportportal:plugin-api:develop-SNAPSHOT '
55
55
}
56
56
implementation(' org.hibernate:hibernate-core:5.4.18.Final' )
57
57
implementation ' com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.7'
Original file line number Diff line number Diff line change 1
1
package com .epam .reportportal .extension .importing .model ;
2
2
3
3
import com .epam .ta .reportportal .ws .reporting .ItemAttributesRQ ;
4
+ import java .time .Instant ;
4
5
import java .util .Set ;
5
6
6
7
public class ItemInfo {
@@ -9,6 +10,10 @@ public class ItemInfo {
9
10
private String description ;
10
11
private Set <ItemAttributesRQ > itemAttributes ;
11
12
13
+ private Instant startTime ;
14
+
15
+ private long duration ;
16
+
12
17
public String getUuid () {
13
18
return uuid ;
14
19
}
@@ -33,4 +38,20 @@ public void setDescription(String description) {
33
38
public String getDescription () {
34
39
return description ;
35
40
}
41
+
42
+ public Instant getStartTime () {
43
+ return startTime ;
44
+ }
45
+
46
+ public void setStartTime (Instant startTime ) {
47
+ this .startTime = startTime ;
48
+ }
49
+
50
+ public long getDuration () {
51
+ return duration ;
52
+ }
53
+
54
+ public void setDuration (long duration ) {
55
+ this .duration = duration ;
56
+ }
36
57
}
You can’t perform that action at this time.
0 commit comments