Skip to content

Commit 5efa6b5

Browse files
authored
Release 5.13.0
2 parents a546c85 + 58102d1 commit 5efa6b5

File tree

9 files changed

+47
-112
lines changed

9 files changed

+47
-112
lines changed

build.gradle

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
plugins {
2-
id "io.spring.dependency-management" version "1.1.4"
2+
id "io.spring.dependency-management" version "1.1.7"
33
id 'java'
44
id "com.github.node-gradle.node" version "2.2.1"
5-
id "org.jooq.jooq-codegen-gradle" version "3.19.13"
5+
id "org.jooq.jooq-codegen-gradle" version "3.19.18"
66
}
77

88
apply from: 'project-properties.gradle'
@@ -28,23 +28,24 @@ dependencyManagement {
2828
}
2929
}
3030

31+
ext['spring-boot.version'] = "${springBootVersion}"
32+
3133
dependencies {
3234
if (releaseMode) {
3335
implementation 'com.epam.reportportal:commons-dao'
3436
implementation 'com.epam.reportportal:plugin-api'
3537
annotationProcessor 'com.epam.reportportal:plugin-api'
3638
} else {
37-
implementation 'com.github.reportportal:commons-dao:a98c172'
38-
implementation 'com.github.reportportal:plugin-api:815c74a'
39-
annotationProcessor 'com.github.reportportal:plugin-api:815c74a'
39+
implementation 'com.github.reportportal:commons-dao:1296d7c'
40+
implementation 'com.github.reportportal:plugin-api:8874441'
41+
annotationProcessor 'com.github.reportportal:plugin-api:8874441'
4042
}
41-
implementation 'org.hibernate:hibernate-core:5.6.15.Final'
42-
43-
implementation group: 'javax.servlet', name: 'javax.servlet-api', version: '4.0.1'
44-
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.0'
45-
testImplementation 'org.mockito:mockito-junit-jupiter:3.12.4'
4643

47-
testImplementation 'org.hamcrest:hamcrest-all:1.3'
44+
// add lombok support
45+
compileOnly "org.projectlombok:lombok:${lombokVersion}"
46+
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
47+
testCompileOnly "org.projectlombok:lombok:${lombokVersion}"
48+
testAnnotationProcessor "org.projectlombok:lombok:${lombokVersion}"
4849

4950
}
5051

gradle.properties

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
version=5.12.1
1+
version=5.13.0
22
description=EPAM Report Portal. GitLab plugin.
33
pluginId = GitLab
4+
5+
springBootVersion=3.4.2
6+
lombokVersion=1.18.36

src/main/java/com/epam/reportportal/extension/gitlab/GitlabExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
import java.util.Map;
4343
import java.util.function.Supplier;
4444
import java.util.stream.Collectors;
45-
import javax.annotation.PostConstruct;
45+
import jakarta.annotation.PostConstruct;
4646
import org.jasypt.util.text.BasicTextEncryptor;
4747
import org.pf4j.Extension;
4848
import org.springframework.beans.factory.DisposableBean;

src/main/java/com/epam/reportportal/extension/gitlab/dto/IssueDto.java

Lines changed: 5 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,14 @@
1515
*/
1616
package com.epam.reportportal.extension.gitlab.dto;
1717

18+
import lombok.Getter;
19+
import lombok.Setter;
20+
1821
/**
1922
* @author <a href="mailto:pavel_bortnik@epam.com">Pavel Bortnik</a>
2023
*/
24+
@Setter
25+
@Getter
2126
public class IssueDto {
2227

2328
private Long iid;
@@ -28,35 +33,4 @@ public class IssueDto {
2833
public IssueDto() {
2934
}
3035

31-
public Long getIid() {
32-
return iid;
33-
}
34-
35-
public void setIid(Long iid) {
36-
this.iid = iid;
37-
}
38-
39-
public String getTitle() {
40-
return title;
41-
}
42-
43-
public void setTitle(String title) {
44-
this.title = title;
45-
}
46-
47-
public String getState() {
48-
return state;
49-
}
50-
51-
public void setState(String state) {
52-
this.state = state;
53-
}
54-
55-
public String getWebUrl() {
56-
return webUrl;
57-
}
58-
59-
public void setWebUrl(String webUrl) {
60-
this.webUrl = webUrl;
61-
}
6236
}

src/main/java/com/epam/reportportal/extension/gitlab/dto/LabelDto.java

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,14 @@
1515
*/
1616
package com.epam.reportportal.extension.gitlab.dto;
1717

18+
import lombok.Getter;
19+
import lombok.Setter;
20+
1821
/**
1922
* @author <a href="mailto:pavel_bortnik@epam.com">Pavel Bortnik</a>
2023
*/
24+
@Setter
25+
@Getter
2126
public class LabelDto {
2227

2328
private Long id;
@@ -26,20 +31,4 @@ public class LabelDto {
2631
public LabelDto() {
2732
}
2833

29-
public Long getId() {
30-
return id;
31-
}
32-
33-
public void setId(Long id) {
34-
this.id = id;
35-
}
36-
37-
public String getName() {
38-
return name;
39-
}
40-
41-
public void setName(String name) {
42-
this.name = name;
43-
}
44-
4534
}

src/main/java/com/epam/reportportal/extension/gitlab/dto/NamespaceDto.java

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,14 @@
1515
*/
1616
package com.epam.reportportal.extension.gitlab.dto;
1717

18+
import lombok.Getter;
19+
import lombok.Setter;
20+
1821
/**
1922
* @author <a href="mailto:pavel_bortnik@epam.com">Pavel Bortnik</a>
2023
*/
24+
@Setter
25+
@Getter
2126
public class NamespaceDto {
2227

2328
private Long id;
@@ -26,19 +31,4 @@ public class NamespaceDto {
2631
public NamespaceDto() {
2732
}
2833

29-
public Long getId() {
30-
return id;
31-
}
32-
33-
public void setId(Long id) {
34-
this.id = id;
35-
}
36-
37-
public String getName() {
38-
return name;
39-
}
40-
41-
public void setName(String name) {
42-
this.name = name;
43-
}
4434
}

src/main/java/com/epam/reportportal/extension/gitlab/dto/ProjectDto.java

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,14 @@
1515
*/
1616
package com.epam.reportportal.extension.gitlab.dto;
1717

18+
import lombok.Getter;
19+
import lombok.Setter;
20+
1821
/**
1922
* @author <a href="mailto:pavel_bortnik@epam.com">Pavel Bortnik</a>
2023
*/
24+
@Setter
25+
@Getter
2126
public class ProjectDto {
2227

2328
private Long id;
@@ -27,19 +32,4 @@ public class ProjectDto {
2732
public ProjectDto() {
2833
}
2934

30-
public Long getId() {
31-
return id;
32-
}
33-
34-
public void setId(Long id) {
35-
this.id = id;
36-
}
37-
38-
public NamespaceDto getNamespace() {
39-
return namespace;
40-
}
41-
42-
public void setNamespace(NamespaceDto namespace) {
43-
this.namespace = namespace;
44-
}
4535
}
Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
package com.epam.reportportal.extension.gitlab.dto;
22

3+
import lombok.Getter;
4+
import lombok.Setter;
5+
6+
@Setter
7+
@Getter
38
public class UploadsLinkDto {
49

510
private String markdown;
611

7-
public void setMarkdown(String markdown) {
8-
this.markdown = markdown;
9-
}
10-
11-
public String getMarkdown() {
12-
return markdown;
13-
}
1412
}

src/main/java/com/epam/reportportal/extension/gitlab/dto/UserDto.java

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,14 @@
1515
*/
1616
package com.epam.reportportal.extension.gitlab.dto;
1717

18+
import lombok.Getter;
19+
import lombok.Setter;
20+
1821
/**
1922
* @author <a href="mailto:pavel_bortnik@epam.com">Pavel Bortnik</a>
2023
*/
24+
@Setter
25+
@Getter
2126
public class UserDto {
2227

2328
private Long id;
@@ -26,19 +31,4 @@ public class UserDto {
2631
public UserDto() {
2732
}
2833

29-
public Long getId() {
30-
return id;
31-
}
32-
33-
public void setId(Long id) {
34-
this.id = id;
35-
}
36-
37-
public String getName() {
38-
return name;
39-
}
40-
41-
public void setName(String name) {
42-
this.name = name;
43-
}
4434
}

0 commit comments

Comments
 (0)