Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ Finally, you need to configure the plugin via XML. The file must be named `jira-
<token>atlassian-token</token>
</api-token>

<!--
<credentials>
<username>foobar</username>
<password>secret</password>
</credentials>
-->

<projects>
<project>
<key>PX</key>
Expand Down Expand Up @@ -52,8 +59,9 @@ jqassistant.sh server
If your JIRA instance uses a self-signed certificate register it with the [Keytool](http://tutorials.jenkov.com/java-cryptography/keytool.html):

```bash
keytool -import -alias JIRA -file jira.crt -keystore $JAVA_HOME/jre/lib/security/cacerts
keytool -import -alias JIRA -file jira.crt -keystore $JAVA_HOME/lib/security/cacerts
```
The certificate can be exported directly from a web browser (DER encoded-binary X509), the default passwort of the JRE keystore is `changeit`.

## Model

Expand Down