Skip to content
This repository was archived by the owner on Jun 9, 2021. It is now read-only.

Commit 1b21157

Browse files
committed
doc
1 parent 5084d2e commit 1b21157

File tree

5 files changed

+28
-13
lines changed

5 files changed

+28
-13
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ target
55
*~
66
.okhttpcache
77
node_modules
8+
opt
9+
atlassian-plugin-sdk-tgz
10+

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
Changelog of Pull Request Notifier for Bitbucket.
44

55
## Unreleased
6+
### No issue
7+
doc
8+
9+
[c5a68b3c849098f](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/commit/c5a68b3c849098f) Tomas Bjerre *2017-04-21 14:46:49*
10+
11+
## 2.62
12+
### GitHub [#211](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/issues/211) https proxy settings
13+
Adding optional schema to proxy configuration
14+
15+
[ec83352a2f7098a](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/commit/ec83352a2f7098a) Tomas Bjerre *2017-04-05 18:10:26*
16+
617
### No issue
718
doc
819

@@ -1246,6 +1257,8 @@ java.util.Base64 is available since 1.8 and javax.xml.bind.DatatypeConverter sin
12461257

12471258
[36f99c11d31c763](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/commit/36f99c11d31c763) Raimana *2015-04-01 09:24:20*
12481259

1260+
## 1.1
1261+
### No issue
12491262
Adding support for PULL_REQUEST_FROM/TO_HASH, filters and fixing authentication bug
12501263
* Making it compatible with Stash 2.12.0
12511264
* Some more documentation

ISSUE_TEMPLATE

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ If things don't work as you expect, perhaps you should file an issue. But first,
44
* Bitbucket Server version used.
55
* Stack traces in Bitbucket Server log file.
66
* Any browser console log messages, you can find it in Developer Tools in Chome by pressing F12.
7-
* Screenshot of plugin configuration in your issue.
8-
* Your configuration.
9-
You can get it with something like this:
10-
11-
`curl -u admin:admin 'http://localhost:7990/bitbucket/rest/prnfb-admin/1.0/settings' -H 'Accept: application/json, text/javascript, */*; q=0.01'`
12-
13-
`curl -u admin:admin 'http://localhost:7990/bitbucket/rest/prnfb-admin/1.0/settings/notifications' -H 'Accept: application/json, text/javascript, */*; q=0.01'`.
14-
15-
`curl -u admin:admin 'http://localhost:7990/bitbucket/rest/prnfb-admin/1.0/settings/buttons' -H 'Accept: application/json, text/javascript, */*; q=0.01'`.
16-
* If the system you are trying to notify does not seem to get notified you may check that the triggered URL looks as expected. You can do that by invoking https://requestb.in/ and inspect its results.
7+
* Screenshot of plugin configuration in your issue. Or the actual persisted settings:
8+
* Your configuration:
9+
* http://localhost:7990/bitbucket/rest/prnfb-admin/1.0/settings
10+
* http://localhost:7990/bitbucket/rest/prnfb-admin/1.0/settings/buttons
11+
* http://localhost:7990/bitbucket/rest/prnfb-admin/1.0/settings/notifications
12+
* If the system you are trying to notify does not seem to get notified:
13+
* Check that the triggered URL looks as expected. You can do that by invoking https://requestb.in/ and inspect its results.
14+
* Try to SSH to the Bitbucket Server machine and run same URL with Curl to make sure it's not a firewall issue.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,9 +286,9 @@ Changelog of Pull Request Notifier for Bitbucket.
286286
</profiles>
287287

288288
<properties>
289-
<bitbucket.version>4.12.1</bitbucket.version>
289+
<bitbucket.version>4.14.3</bitbucket.version>
290290
<bitbucket.data.version>${bitbucket.version}</bitbucket.data.version>
291291
<quick.reload.version>2.0.0</quick.reload.version>
292292
<amps.version>6.1.0</amps.version>
293293
</properties>
294-
</project>
294+
</project>

setup-atlassian-sdk.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#!/bin/bash
2+
installdir=`pwd`
23
wget https://marketplace.atlassian.com/download/plugins/atlassian-plugin-sdk-tgz
34
mkdir opt
45
tar -xvzf *plugin-sdk* -C opt
56
mv opt/*plugin-sdk* opt/atlassian-plugin-sdk
67
chmod a+x opt/atlassian-plugin-sdk/bin/*
78
chmod a+x opt/atlassian-plugin-sdk/apache-maven-*/bin/*
8-
echo "export PATH=opt/atlassian-plugin-sdk/bin:opt/atlassian-plugin-sdk/apache-maven-*/bin:$PATH" >> ~/.bashrc
9+
echo "export PATH=$installdir/opt/atlassian-plugin-sdk/bin:$installdir/opt/atlassian-plugin-sdk/apache-maven-*/bin:$PATH" >> ~/.bashrc
910
source ~/.bashrc

0 commit comments

Comments
 (0)