GeneralWhat is pugua and how the heck to do you pronounce it?Pugua (pronounced pooh-gwah or pooh-gwaa) is the Chamorro name for the betel nut.
What is JiraBuddy?JiraBuddy is a Jira plug-in for Eclipse developed by PuguaSoft. It provides various features such as Jira issue summary "hover" and opening Jira tickets in the Eclipse web browser. For more information on JiraBuddy, check out the features page. JiraBuddy is free and released under the Eclipse Public License - v 1.0. Unlike the Eclipse plugin being development by Atlassian, JiraBuddy is not meant to be a full-fledged replacement to create or update JIRA bugs in Eclipse. Rather, JiraBuddy was created to add various enhancements within Eclipse in order to make JIRA more useful and helpful to developers.
Setup & InstallationI'm having trouble connecting to a JIRA server with HTTPS/SSL.Please see the next question, I'm getting a javax.net.ssl.SSLHandshakeException..., if you are getting the following Java exception: javax.net.ssl.SSLHandshakeException: I'm getting a javax.net.ssl.SSLHandshakeException error with the following dialog:This error can occur if you are trying to connect to a JIRA server over HTTPS/SSL that is using a self-signed certificate or a certificate that was otherwise signed by a CA (certificate authority) that is not contained in the default trusted CA's by your JVM. To solve this problem, you need to add your JIRA server certificate to the your JVM certificate keystore. Java includes a command named keytool for this purpose. Here is what you need to do:
$ sudo keytool -import -alias some_unique_name -file JiraServer.cert -keystore $JAVA_HOME/lib/security/cacerts |