Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <atlassian-plugin key="${atlassian.plugin.key}" name="${project.name}" plugins-version="2">
  4. <plugin-info>
  5. <description>${project.description}</description>
  6. <version>${project.version}</version>
  7. <vendor name="${project.organization.name}" url="${project.organization.url}"/>
  8. <param name="plugin-icon">images/pluginIcon.png</param>
  9. <param name="plugin-logo">images/pluginLogo.png</param>
  10. </plugin-info>
  11.  
  12. <resource type="i18n" name="i18n" location="issue-crud"/>
  13.  
  14. <!-- <web-item key="events-link" name="Events" section="system.top.navigation.bar" weight="10">-->
  15. <!-- <label key="events.label"/>-->
  16. <!-- <link linkId="events-page">/plugins/servlet/issuecrud</link>-->
  17. <!-- <condition class="com.atlassian.jira.plugin.webfragment.conditions.UserLoggedInCondition"/>-->
  18. <!-- </web-item>-->
  19.  
  20. <!-- <web-resource key="my-rest-resource-resources" name="my-rest-resource-resources">-->
  21. <!-- <resource type="download" name="issue-crud.css" location="/css/issue-crud.css"/>-->
  22. <!-- <resource type="download" name="issue-crud.js" location="/js/issue-crud.js"/>-->
  23. <!-- <resource type="download" name="images/" location="/images"/>-->
  24. <!-- <resource type="download" name="events-restful-table.js" location="/js/events-restful-table.js"/>-->
  25. <!-- </web-resource>-->
  26.  
  27. <web-resource key="events-restful-table-script" name="events-restful-table-script">
  28. <resource type="download" name="TeamRow.js" location="/js/TeamRow.js"/>
  29. <resource type="download" name="events-restful-table.js" location="/js/events-restful-table.js"/>
  30. <dependency>com.atlassian.auiplugin:ajs</dependency>
  31. <dependency>com.atlassian.auiplugin:aui-experimental-restfultable</dependency>
  32. <dependency>com.atlassian.auiplugin:aui-date-picker</dependency>
  33. </web-resource>
  34.  
  35. <servlet name="Issue CRUD" i18n-name-key="issue-crud.name" key="issue-crud" class="com.example.plugins.tutorial.servlet.ViewInitializerServlet">
  36. <url-pattern>/issuecrud</url-pattern>
  37. </servlet>
  38.  
  39. <rest name="My Rest Resource" i18n-name-key="my-rest-resource.name" key="my-rest-resource" path="/myrestresource" version="1.0"/>
  40. <component-import key="renderer" interface="com.atlassian.templaterenderer.velocity.one.six.VelocityTemplateRenderer"/>
  41. </atlassian-plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement