...
Note |
---|
Version 0.2 is compatible with JIRA 4.0.x only! |
- Download Jython 2.5.0 from http://jython.org/downloads.html and install it: java -jar jython_installer-2.5.0.jar. Please do not use other versions (even later ones), this is known to cause bugs.
- Set Java property for JIRA: -Dpython.home=<jython install directory> (follow this guide)
- Copy plugin jar to JIRA_HOME/plugins/installed-plugins
- Modify /WEB-INF/classes/actions.xml: change "issue.EditSubTaskIssue" to "com.quisapps.jira.plugin.action.EditSubTaskIssue" and "issue.EditIssue" to "com.quisapps.jira.plugin.action.EditIssue"
- Copy Jython placeholders from plug-in jar file
/jython
toJIRA_HOME/jss/jython
- Restart JIRA
- If you look into plugin jar file (e.g. with 7zip or any other compatible archiver), you'll find a
jython
folder containing some sub-folders and python files. Those files are vital for the plugin to run. You should extract thisjython
folder from the jar and place it toJIRA_HOME/jss
folder (just create the jss folder if it does not exist). - Restart JIRA
- If you want to use Jython listeners, you can add one Optionally you can add listener with any name (e.g. Jython) and class
com.quisapps.jira.plugin.listener.JythonListener
v0.3 to v0.3.1 Upgrade
Version 0.3.1 is a bugfix to 0.3. Replace 0.3 with 0.3.1 if you experience problems with editing issues (e.g. with setting Affects Version/s and Fix Version/s fields).
...