JS File is loading successfully in velocity template file when I run the plugin in development mode but when I run the jar file of this plugin in standalone Jira then JS file is not including in velocity template.
I included $webResourceManager.requireResource("${project.groupId}.${project.artifactId}:resources") in velocity template but it didn't work.
directory are as follows :
> inside resource folder
velocity template :
template/xyz.vm ---->around 4-5 vm files
resource(.js) file :
JSFile.js
resource(.js) file in atlassian-plugin.xml file :
<web-resource name="Resources" key="resources"> <resource name="JSFile.js" type="download" location="JSFile.js"> <param name="batch" value="false"/> </resource> <context>atl.general</context> </web-resource>
Any help will be appreciated.
Thanks in advance.
Whay do you need batch=false ?
If you use batch false then you need to use a method like:
$webResourceManager.getStaticPluginResource("com.myplugin:resources","JSFile.js")
This will produce a url to the resource which you can use in <script> tag
I would advice removing <
param
name
=
"batch"
value
=
"false"
/> and see what will happen.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.