Hi,
I am following the plugin tutorial at
https://developer.atlassian.com/server/framework/atlassian-sdk/modify-the-plugin-using-quickreload/
which asked me to make sure this is in the atlassian-plugin.xml
true
false
although it was already like that as generated by atlas-create-jira-plugin
I then added a web item using atlas-create-jira-plugin-module
but it didn’t show up, I added one I copied from this forum but it didn’t show up
I tried quick reload and I tried complete shutdown and restart but it still wont show up anywhere
it seems the tutorial is using different nameing convention than the rest of the examples I see:
tutorial: section=“my-item-link/my-section”
examples: system.header/left
what am I missing?
my XML file with the various web-item attempts
<?xml version="1.0" encoding="UTF-8"?>
<atlassian-plugin key="${atlassian.plugin.key}" name="${project.name}" plugins-version="2">
<plugin-info>
<description>${project.description}</description>
<version>${project.version}</version>
<vendor name="${project.organization.name}" url="${project.organization.url}"/>
<param name="plugin-icon">images/pluginIcon.png</param>
<param name="plugin-logo">images/pluginLogo.png</param>
</plugin-info>
<!-- add our i18n resource -->
<resource type="i18n" name="i18n" location="myPlugin"/>
<!-- add our web resources -->
<web-item key="google_home" name="Google Home" section="system.admin/example1" weight="2">
<description key="item.google.home.desc">Simple link to google.com.</description>
<label key="item.google.home.label" />
<link linkId="google_home">http://google.com</link>
</web-item>
<web-resource key="myPlugin-resources" name="myPlugin Web Resources">
<dependency>com.atlassian.auiplugin:ajs</dependency>
<resource type="download" name="myPlugin.css" location="/css/myPlugin.css"/>
<resource type="download" name="myPlugin.js" location="/js/myPlugin.js"/>
<resource type="download" name="images/" location="/images"/>
<context>myPlugin</context>
</web-resource>
<web-item name="Google" i18n-name-key="google.name" key="google" section="system.header/left" weight="1">
<description key="google.description">The Google Plugin</description>
<label key="google.label"></label>
<link linkId="google-link">http://www.google.com</link>
</web-item>
<web-item name="Atlassian dev site" i18n-name-key="atlassiandevsite.name" key="atlassiandevsite" section="my-item-link/my-section" weight="3">
<description key="atlassiandevsite.description">The Atlassian dev site Plugin</description>
<context-provider class="com.atlassian.tutorial.web.contextproviders.MyContextProvider"/>
<label key="atlassiandevsite.label"/>
<link linkId="atlassiandevsite-link">http://developer.atlassian.com/docs</link>
</web-item>
<web-item name="Atlassian Developers site" i18n-name-key="atlassian-developerssite.name" key="atlassian-developerssite" section="my-item-link/my-section" weight="4">
<description key="atlassian-developerssite.description">The Atlassian Developers site Plugin</description>
<label key="atlassian-developerssite.label"></label>
<link linkId="atlassian-developerssite-link">http://developer.atlassian.com/docs</link>
</web-item>
</atlassian-plugin>
thanks for the help