This repository was archived by the owner on Jun 9, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +20
-1
lines changed
src/test/java/se/bjurr/prnb/admin/utils Expand file tree Collapse file tree 4 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,11 @@ before_install:
12
12
- export PATH=opt/atlassian-plugin-sdk/bin:opt/atlassian-plugin-sdk/apache-maven-*/bin:$PATH
13
13
- atlas-version
14
14
install :
15
+ # Install Atlassian libs in local Maven repo
16
+ - atlas-mvn -q install -Dstash.version=4.0.0
15
17
- atlas-mvn -q install
16
18
script :
19
+ - atlas-package -q -Dstash.version=4.0.0
17
20
- atlas-package -q
18
21
notifications :
19
22
email : false
Original file line number Diff line number Diff line change 170
170
</resources >
171
171
</build >
172
172
<properties >
173
- <bitbucket .version>4.0.1 </bitbucket .version>
173
+ <bitbucket .version>4.4.0 </bitbucket .version>
174
174
<bitbucket .data.version>${bitbucket.version} </bitbucket .data.version>
175
175
<amps .version>6.1.0</amps .version>
176
176
</properties >
Original file line number Diff line number Diff line change 5
5
6
6
import com .atlassian .bitbucket .pull .PullRequest ;
7
7
import com .atlassian .bitbucket .pull .PullRequestParticipant ;
8
+ import com .atlassian .bitbucket .pull .PullRequestParticipantStatus ;
8
9
import com .atlassian .bitbucket .pull .PullRequestRole ;
9
10
import com .atlassian .bitbucket .user .ApplicationUser ;
10
11
@@ -76,6 +77,16 @@ public PullRequestRole getRole() {
76
77
public PullRequest getPullRequest () {
77
78
return null ;
78
79
}
80
+
81
+ // Needed for 4.4.0, dont use @Override
82
+ public int compareTo (PullRequestParticipant arg0 ) {
83
+ return 0 ;
84
+ }
85
+
86
+ // Needed for 4.4.0, dont use @Override
87
+ public PullRequestParticipantStatus getStatus () {
88
+ return null ;
89
+ }
79
90
};
80
91
}
81
92
}
Original file line number Diff line number Diff line change @@ -128,6 +128,11 @@ public ProjectType getType() {
128
128
public boolean isPublic () {
129
129
return false ;
130
130
}
131
+
132
+ // Needed for 4.4.0, dont use @Override
133
+ public String getNamespace () {
134
+ return null ;
135
+ }
131
136
};
132
137
}
133
138
You can’t perform that action at this time.
0 commit comments