Advertisement
DrupalCustom

atlass-plugin.xml

Jul 5th, 2012
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <atlassian-plugin key="${project.groupId}.${project.artifactId}" name="${project.name}" plugins-version="2">
  2.  
  3. <plugin-info>
  4. <description>${project.description}</description>
  5. <version>${project.version}</version>
  6. <vendor name="${project.organization.name}" url="${project.organization.url}" />
  7. </plugin-info>
  8.  
  9. <resource type="i18n" name="i18n" location="message" />
  10.  
  11. <web-item name="add-fpc-label-action-web-ui" key="add-fpc-label-action-web-ui" section="system.space" weight="150">
  12. <description key="item.add-fpc-label-action-web-ui.link.desc">Allows the Create Freeway Project functionality.</description>
  13. <label key="Freeway Project Creation"/>
  14. <link linkId="add-fpc-label-action">/plugins/examples/hello.action?key=$helper.space.key</link>
  15. </web-item>
  16.  
  17.  
  18. <xwork name="My Example Action" key="example-action">
  19. <description>Shows a simple "Hello, World!" Action</description>
  20. <package name="examples" extends="default" namespace="/plugins/examples">
  21. <default-interceptor-ref name="validatingStack" />
  22.  
  23. <action name="hello" class="com.atlassian.myorg.ExampleAction">
  24. <result name="success" type="velocity">/templates/example/hello.vm</result>
  25. </action>
  26. </package>
  27. </xwork>
  28.  
  29. </atlassian-plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement