Coming soon in Atlassian Marketplace & FREE! To make our lives happier! One plugin to print nice cards through the Agile Rapid Board, and another one to set colors to the “rejected/canceled/suspended” status and “waiting/on hold/paused” status
Read MoreTutorial – Adding a JQL function to JIRA 6 – 7
Step 1. Create the plugin project If you have not already set up the Atlassian Plugin SDK, do that now: Set up the Atlassian Plugin SDK and Build a Project. Enter the following command to create a plugin skeleton: atlas-create-jira-plugin Choose 1 for JIRA 5 when asked which version of JIRA you want to create…
Read More
New release of my plugins
Today is a goooood DAY! New release of “Kanban Combined WIP extension” and “JiraSupport Admin tools” plugins for JIRA, mow more COOLs & AMAZINGs! DOWNLOAD FROM ATLASSIAN MARKETPLACE
Read More
My new addon for JIRA: JiraSupport Admin Tools
If your JIRA is a large instance, you probably use & abuse of the Web browser functionality : “search”… for customfields, workflows, workflow schemes, permissions schemes, views, DVCS repos … with this plugin, this functionality is added in the top buttons of each view of the project administration artifacts (with the autocomplete option)… it’s a…
Read MoreDelegated Project Creator for JIRA addon
A good addon for your JIRA, to create new projects from template: Save time by enabling your trusted users to instantly create their own projects from predefined templates Easily create new projects from your own templates Trusted groups are empowered to create projects from a list of pre-defined templates. Your new project can be ready…
Read MoreTutorial – Creating a project template with Standalone artifacts in JIRA 7
1.- First see the instructions of this old post 2.- Change the file /src/main/resources/atlassian-plugin.xml like this. Bassically you need to add <projectTypeKey>business</projectTypeKey> 3.- In the file /src/main/java/com/example/plugins/tutorial/MyAddProjectHook.java change the file to like this:
Read MoreTutorial – Creating a project template with Standalone artifacts in JIRA
First create the plugin like the Atlassian recommendations Additionally in the dependences ( pom.xml ) put this dependences Additionally in the MyAddProjectHook put this code to create a new scheme for all artifacts, additionally you can create a Permission Scheme called “Template”, in this case this permissions will be cloned also:
Read More
Create a new plugin / add-on in JIRA to set custom CSS and Javascript / JS in all pages
Creating our first JIRA plugin “Hello World”: enter in C:\atlastutorial atlas-create-jira-plugin Enter 1 for JIRA 5 groupId: com.atlassian.tutorial artifactId: helloworld version: 1.0-SNAPSHOT package: com.atlassian.tutorial.helloworld Press Y to continue Browse to and open the atlastutorial/helloworld/src/main/resources/atlassian-plugin.xml file Modify helloworld.js and add inside a piece of code like this: “alert(“Hola!”)” Modify the tag <context> to active the Javascript…
Read More
Create a new Add-on or Plugin in JIRA to show more options in the Main Menu /General Menu
Creating our first JIRA plugin “Hello World”: enter in C:\atlastutorial atlas-create-jira-plugin Enter 1 for JIRA 5 groupId: com.atlassian.tutorial artifactId: helloworld version: 1.0-SNAPSHOT package: com.atlassian.tutorial.helloworld Press Y to continue Add a module to the plugin: enter in C:\atlastutorial atlas-create-jira-plugin-module Select the 30 Web Section item by entering 30. Answer each question as follows: Question Value Description…
Read More
Create our first JIRA PLUGIN / ADD-ON … Hello World
Install JDK from Oracle Set the JAVA_HOME and PATH system variables Right click on “My Computer” Properties –> Advanced Settings Environment Variables –> System Variables JAVA_HOME must be with the JDK root path PATH must be with the JDK\bin path Download the SDK from Atlassian Create a directory called “atlastutorial” for example In C:\ then…
Read MoreClone or Copy a JIRA Project configuration with Groovy ScriptRunner (With or without issues)
It’s easy, only you need go to “Add-ons” and then to “Built-in Scripts–> Copy Project” Then only fill the form to clone or copy the configuration of a source project.
Read MoreDatabase Custom Fields with Kepler Plugin. Show a list of issues of one JIRA project in a Custom Field
1.- Install the plugin: https://marketplace.atlassian.com/plugins/com.keplerrominfo.jira.plugins.keplercf 2.- Create a Custom Field of the new Type “Database Custom Field” 3.- Go to your apache-tomcat/conf/context.xml and add the Datasource (first you need to install the Database JAR Driver if it’s different database Oracle, MySQL,… for example in apache-tomcat/lib/mysql-connector-java-5.1.17.jar 4.- Restart Tomcat 5.- Go as Admin to –> JIRA –> Add-ons…
Read More