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

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbjerre committed Jul 30, 2017
1 parent 3706632 commit 34ef39f
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,18 @@

Changelog of Pull Request Notifier for Bitbucket.

## Unreleased
### No issue
doc

[c4eb36d3853c9cb](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/commit/c4eb36d3853c9cb) Tomas Bjerre *2017-07-28 10:19:35*

## 3.6
### GitHub [#236](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/issues/236) username and password missing from saved configuration and HTTP requests
Bugfix setting credentials correctly

[22a891b66e992a1](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/commit/22a891b66e992a1) Tomas Bjerre *2017-07-24 20:53:30*

## 3.5
### No issue
doc
Expand Down
12 changes: 12 additions & 0 deletions CONTRIBUTING.md
@@ -1,3 +1,15 @@
# Inspect DB

* Turn off BBS
* java -cp ./target/bitbucket/app/WEB-INF/lib/h2-1.3.176.jar org.h2.tools.Shell
* User: sa
* Driver Leave blank, just enter
* URL: jdbc:h2:file:///home/bjerre/workspace/pull-request-notifier-for-bitbucket/target/bitbucket/home/shared/data/db;DB_CLOSE_ON_EXIT=TRUE
* Password Leave blank, just enter
* maxwidth 9999
* SELECT * FROM PLUGIN_SETTING WHERE KEY_NAME LIKE '%pull%';
* SELECT KEY_VALUE FROM PLUGIN_SETTING WHERE KEY_NAME='se.bjurr.prnfb.pull-request-notifier-for-bitbucket-3'

# Developer instructions

The .travis.yml is setting up Atlas SDK and building the plugin. It may help you setup your environment.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -281,7 +281,7 @@ Changelog of Pull Request Notifier for Bitbucket.
</profiles>

<properties>
<bitbucket.version>5.0.2</bitbucket.version>
<bitbucket.version>5.2.2</bitbucket.version>
<bitbucket.data.version>${bitbucket.version}</bitbucket.data.version>
<quick.reload.version>2.0.0</quick.reload.version>
<amps.version>6.3.0</amps.version>
Expand Down
10 changes: 6 additions & 4 deletions setup-atlassian-sdk.sh
@@ -1,11 +1,13 @@
#!/bin/bash

if [ "$1" -gt "-1" ]
then echo Give param, like /home/username
installdir=$1
if [ $# -eq 0 ]; then
installdir=~
fi

installdir=$1
cd $1
echo Installing in $installdir

cd $installdir
wget https://marketplace.atlassian.com/download/plugins/atlassian-plugin-sdk-tgz
mkdir opt
tar -xvzf *plugin-sdk* -C opt
Expand Down

0 comments on commit 34ef39f

Please sign in to comment.