You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I'm trying to make jira plugin. I want to add image, css and js files in my html file but I couldn't do it.
That's how looks my atlassian-plugin.xml
<web-resource key="Saphire-resources" name="Saphire Web Resources">
<dependency>com.atlassian.auiplugin:ajs</dependency>
<context>atl.general</context>
<resource type="download" name="Saphire.css" location="css/Saphire.css"/>
</web-resource>
<!-- add our web panel -->
<web-panel key="myPanel" location="servicedesk.portal.subheader">
<resource name="view" type="static" location="index.html"/>
<resource type="download" name="images/" location="images/"/>
</web-panel>
I'm not sure where i have to write the resources for my web HTML, so I tried one in web-panel label and another one in web-resource label.
I tried to follow this post: https://community.atlassian.com/t5/Answers-Developer-Questions/JIRA-Plugin-Development-How-to-import-image-file-on-velocity/qaq-p/521008
And I writte in my HTML the next code:
<head>
<link rel="stylesheet" type="text/css" href="$req.contextPath/download/resources/com.atlasian.saphire:Saphire-resources/Saphire.css">
</head>
<body>
<button id="send" type="button" class="btn" onclick="prompt()"><img src="$req.contextPath/download/resources/com.atlasian.saphire:Saphire-resources/images/send.png" /></button>
</body>
I have the same problem win a JS file.