Skip to content

Commit

Permalink
Merge pull request #15 from reportportal/develop
Browse files Browse the repository at this point in the history
Release 1.0.1
  • Loading branch information
pbortnik authored Nov 13, 2024
2 parents 1ac4d7c + f1e3331 commit cd6f561
Show file tree
Hide file tree
Showing 6 changed files with 159 additions and 162 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=1.0.0
version=1.0.1
description=Reinforce you ReportPortal instance with JUnit import functionality and easily upload your log files right to ReportPortal.
pluginId=junit
Binary file added jars/plugin-import-junit-1.0.1-all.jar
Binary file not shown.
10 changes: 5 additions & 5 deletions plugin-junit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ repositories {

dependencyManagement {
imports {
mavenBom(releaseMode ? 'com.epam.reportportal:commons-bom:' + getProperty('bom.version') : 'com.epam.reportportal:commons-bom:5.12.1')
mavenBom(releaseMode ? 'com.epam.reportportal:commons-bom:' + getProperty('bom.version') : 'com.epam.reportportal:commons-bom:5.12.3')
}
}

Expand All @@ -48,10 +48,10 @@ dependencies {
implementation 'com.epam.reportportal:plugin-api'
annotationProcessor 'com.epam.reportportal:plugin-api'
} else {
implementation 'com.github.reportportal:commons-dao:acf1ec7'
implementation 'com.github.reportportal:commons:c8ef09c'
implementation 'com.github.reportportal:plugin-api:188792e'
annotationProcessor 'com.github.reportportal:plugin-api:188792e'
implementation 'com.github.reportportal:commons-dao:develop-SNAPSHOT'
implementation 'com.github.reportportal:commons:develop-SNAPSHOT'
implementation 'com.github.reportportal:plugin-api:develop-SNAPSHOT'
annotationProcessor 'com.github.reportportal:plugin-api:develop-SNAPSHOT'
}
implementation('org.hibernate:hibernate-core:5.4.18.Final')
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.7'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.epam.reportportal.extension.importing.model;

import com.epam.ta.reportportal.ws.reporting.ItemAttributesRQ;
import java.time.Instant;
import java.util.Set;

public class ItemInfo {
Expand All @@ -9,6 +10,10 @@ public class ItemInfo {
private String description;
private Set<ItemAttributesRQ> itemAttributes;

private Instant startTime;

private long duration;

public String getUuid() {
return uuid;
}
Expand All @@ -33,4 +38,20 @@ public void setDescription(String description) {
public String getDescription() {
return description;
}

public Instant getStartTime() {
return startTime;
}

public void setStartTime(Instant startTime) {
this.startTime = startTime;
}

public long getDuration() {
return duration;
}

public void setDuration(long duration) {
this.duration = duration;
}
}
Loading

0 comments on commit cd6f561

Please sign in to comment.