Skip to content

Commit cd6f561

Browse files
authored
Merge pull request #15 from reportportal/develop
Release 1.0.1
2 parents 1ac4d7c + f1e3331 commit cd6f561

File tree

6 files changed

+159
-162
lines changed

6 files changed

+159
-162
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
version=1.0.0
1+
version=1.0.1
22
description=Reinforce you ReportPortal instance with JUnit import functionality and easily upload your log files right to ReportPortal.
33
pluginId=junit
45.3 KB
Binary file not shown.

plugin-junit/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ repositories {
3838

3939
dependencyManagement {
4040
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')
4242
}
4343
}
4444

@@ -48,10 +48,10 @@ dependencies {
4848
implementation 'com.epam.reportportal:plugin-api'
4949
annotationProcessor 'com.epam.reportportal:plugin-api'
5050
} 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'
5555
}
5656
implementation('org.hibernate:hibernate-core:5.4.18.Final')
5757
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.7'

plugin-junit/src/main/java/com/epam/reportportal/extension/importing/model/ItemInfo.java

+21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.epam.reportportal.extension.importing.model;
22

33
import com.epam.ta.reportportal.ws.reporting.ItemAttributesRQ;
4+
import java.time.Instant;
45
import java.util.Set;
56

67
public class ItemInfo {
@@ -9,6 +10,10 @@ public class ItemInfo {
910
private String description;
1011
private Set<ItemAttributesRQ> itemAttributes;
1112

13+
private Instant startTime;
14+
15+
private long duration;
16+
1217
public String getUuid() {
1318
return uuid;
1419
}
@@ -33,4 +38,20 @@ public void setDescription(String description) {
3338
public String getDescription() {
3439
return description;
3540
}
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+
}
3657
}

0 commit comments

Comments
 (0)