-
Notifications
You must be signed in to change notification settings - Fork 364
[JENKINS-39355 Follow-up] Unpicking some of the replicated hacks from… #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 12 commits
0d5b3a4
a2da353
76c087f
b932be3
a0adbe0
6373fb6
6899192
e1f33de
74f9d75
8d83333
7a902d4
99c2d3c
80adc94
93141b3
049155b
991057b
604e7b4
68a7ec4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| == BitBucket Branch Source Plugin | ||
|
|
||
| === Notes | ||
|
|
||
| * Unlike GitHub, in BitBucket, https://bitbucket.org/site/master/issues/4828/team-admins-dont-have-read-access-to-forks[team admins do not have access to forks]. | ||
| This means that when you have a private repository, or a private fork of a public repository, the team admin will not be able to see the PRs within the fork. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,7 +32,7 @@ | |
| </parent> | ||
|
|
||
| <artifactId>cloudbees-bitbucket-branch-source</artifactId> | ||
| <version>1.9-SNAPSHOT</version> | ||
| <version>2.0.0-SNAPSHOT</version> | ||
| <packaging>hpi</packaging> | ||
|
|
||
| <name>Bitbucket Branch Source Plugin</name> | ||
|
|
@@ -60,17 +60,12 @@ | |
| <dependency> | ||
| <groupId>org.jenkins-ci.plugins</groupId> | ||
| <artifactId>scm-api</artifactId> | ||
| <version>1.2</version> | ||
| </dependency> | ||
| <dependency><!-- Remove once DisplayNameItemListener is extracted --> | ||
| <groupId>org.jenkins-ci.plugins</groupId> | ||
| <artifactId>branch-api</artifactId> | ||
| <version>1.10.2</version> | ||
| <version>2.0.1-SNAPSHOT</version> | ||
|
||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.jenkins-ci.plugins</groupId> | ||
| <artifactId>git</artifactId> | ||
| <version>2.3.5</version> | ||
| <version>2.6.1-SNAPSHOT</version> | ||
|
||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>org.apache.httpcomponents</groupId> | ||
|
|
@@ -81,7 +76,7 @@ | |
| <dependency> | ||
| <groupId>org.jenkins-ci.plugins</groupId> | ||
| <artifactId>mercurial</artifactId> | ||
| <version>1.54</version> | ||
| <version>1.58-SNAPSHOT</version> | ||
|
||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.codehaus.jackson</groupId> | ||
|
|
@@ -93,6 +88,19 @@ | |
| <artifactId>display-url-api</artifactId> | ||
| <version>0.2</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.jenkins-ci.plugins</groupId> | ||
| <artifactId>branch-api</artifactId> | ||
| <version>2.0.0-SNAPSHOT</version> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Downstream of jenkinsci/branch-api-plugin#60 |
||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.jenkins-ci.plugins</groupId> | ||
| <artifactId>scm-api</artifactId> | ||
| <version>2.0.1-SNAPSHOT</version> | ||
| <classifier>tests</classifier> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.jenkins-ci.plugins.workflow</groupId> | ||
| <artifactId>workflow-multibranch</artifactId> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In general the user configured for scanning needs to have read permission in all repositories intended to be scanned.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Including the forks where a PR to be scanned lives.