Reputation: 65
Our JIRA project tab panel plugin was working fine with with external web resources (JS & CSS) until 6.3.9, after migrating to 6.4 they're no longer included in the velocity templates. How can we solve this problem? Has there been a change in the way web resources are included in velocity templates? Please help.
<web-resource key="project-tab-resources" name="project-tab Web Resources">
<resource type="download" name="project-tab.css" location="/css/project-tab.css"/>
<resource type="download" name="project-tab.js" location="/js/project-tab.js"/>
project-tab
Upvotes: 1
Views: 527
Reputation: 932
I have found the solution:
We are running a local instance of Jira via atlas-debug
to be able to reload frontend changes without recompiling.
The right way to do the upgrade is:
jira-version
in pom.xml
. atlas-debug
run mvn clean
atlas-debug
as usualBe careful with mvn clean
because if you are using an in memory database it will be destroyed
Upvotes: 1