Setup ScriptRunner for Jira development environment on Arch Linux
Table of Contents
1 Install IntelliJ
sudo pacman -S intellij-idea-community-edition
Once installed you can run it by typing idea
. However this might not work for you if you are using dwm like me so there are few things few need to do. Not very complicated I promise.
1.1 Install wmname
sudo pacman -S wmname
Then set the name of your window manager like this wmname LG3D
1.2 Set variable name
export _JAVA_AWT_WM_NONREPARENTING=1
2 Run idea
Now IntelliJ should load fine. To ensure this works after reboot as well, add these 2 lines to your ~/.xinitrc
file.
wmname LG3D export _JAVA_AWT_WM_NONREPARENTING=1
3 Install maven
sudo pacman -D maven
4 Error: Plugin 'com.atlassian.maven.plugins:jira-maven-plugin:' not found
If you see this problem then try this.
Check mvn version
mvn --version
Note down the Maven home and configure this in your Intellij | Settings | Build, Execution, Development | Maven | Maven home path.
Do mvn clean
and mvn jira:debug
from within your sample-sr-scripts/jira/
directory.