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

Latest commit

 

History

History
46 lines (36 loc) · 1.33 KB

CONTRIBUTING.md

File metadata and controls

46 lines (36 loc) · 1.33 KB

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.

Prerequisites:

Generate Eclipse project:

atlas-mvn eclipse:eclipse

Package the plugin:

atlas-package

Run Bitbucket, with the plugin, on localhost:

export MAVEN_OPTS=-Dplugin.resource.directories=`pwd`/src/main/resources
atlas-run

You can also remote debug on port 5005 with:

atlas-debug

Make a release (detailed instructions):

mvn -B release:prepare -DperformRelease=true release:perform