Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 83c6070

Browse files
ExtendedPullRequest.java
- the latest version of the eclipse github api already implements support for assignees, so here we stop implementing it ourselves pom.xml - bumped parent pom version - bumped to latest LTS of jenkins - bumped jenkins rest harness version - bumped workflow cps and job versions - bumped github-branch-source plugin version - bumped eclipse github api version - bumped token marco dependency version
1 parent 97b8568 commit 83c6070

File tree

2 files changed

+8
-19
lines changed

2 files changed

+8
-19
lines changed

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jenkins-ci.plugins</groupId>
77
<artifactId>plugin</artifactId>
8-
<version>3.5</version>
8+
<version>3.7</version>
99
<relativePath />
1010
</parent>
1111

@@ -14,9 +14,9 @@
1414
<packaging>hpi</packaging>
1515

1616
<properties>
17-
<jenkins.version>2.89.4</jenkins.version>
17+
<jenkins.version>2.107.1</jenkins.version>
1818
<java.level>8</java.level>
19-
<jenkins-test-harness.version>2.34</jenkins-test-harness.version>
19+
<jenkins-test-harness.version>2.37</jenkins-test-harness.version>
2020
<hpi-plugin.version>2.2</hpi-plugin.version>
2121
<stapler-plugin.version>1.17</stapler-plugin.version>
2222
</properties>
@@ -77,26 +77,26 @@
7777
<dependency>
7878
<groupId>org.jenkins-ci.plugins.workflow</groupId>
7979
<artifactId>workflow-cps</artifactId>
80-
<version>2.45</version>
80+
<version>2.47</version>
8181
</dependency>
8282

8383
<dependency>
8484
<groupId>org.jenkins-ci.plugins</groupId>
8585
<artifactId>github-branch-source</artifactId>
86-
<version>2.3.2</version>
86+
<version>2.3.3</version>
8787
</dependency>
8888

8989
<dependency>
9090
<groupId>org.jenkins-ci.plugins.workflow</groupId>
9191
<artifactId>workflow-job</artifactId>
92-
<version>2.16</version>
92+
<version>2.18</version>
9393
</dependency>
9494

9595
<!-- GitHub Client Dependencies -->
9696
<dependency>
9797
<groupId>org.eclipse.mylyn.github</groupId>
9898
<artifactId>org.eclipse.egit.github.core</artifactId>
99-
<version>4.10.0.201712302008-r</version>
99+
<version>4.11.0.201803080745-r</version>
100100
</dependency>
101101

102102
<dependency>
@@ -116,7 +116,7 @@
116116
<dependency>
117117
<groupId>org.jenkins-ci.plugins</groupId>
118118
<artifactId>token-macro</artifactId>
119-
<version>2.3</version>
119+
<version>2.4</version>
120120
<scope>test</scope>
121121
</dependency>
122122

src/main/java/org/jenkinsci/plugins/pipeline/github/client/ExtendedPullRequest.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,13 @@
33
import org.eclipse.egit.github.core.PullRequest;
44
import org.eclipse.egit.github.core.User;
55

6-
import java.util.List;
7-
86
/**
97
* @author Aaron Whiteside
108
*/
119
public class ExtendedPullRequest extends PullRequest {
1210
private static final long serialVersionUID = 4674327177035503955L;
1311

1412
private User closedBy;
15-
private List<User> assignees;
1613
private boolean locked;
1714
private String mergeCommitSha;
1815
private Boolean maintainerCanModify;
@@ -25,14 +22,6 @@ public void setClosedBy(final User closedBy) {
2522
this.closedBy = closedBy;
2623
}
2724

28-
public List<User> getAssignees() {
29-
return assignees;
30-
}
31-
32-
public void setAssignees(final List<User> assignees) {
33-
this.assignees = assignees;
34-
}
35-
3625
public boolean isLocked() {
3726
return locked;
3827
}

0 commit comments

Comments
 (0)