すべてのバージョン
Bamboo 5.13Bamboo 5.7.x
Bamboo 5.6.x
More...
Each XWork module is deployed as a plugin module of type xwork and contains one or more XWork package
elements.
Below is an example atlassian-plugin.xml
file containing a single XWork module.
The XWork plugin module allows you to define your own XWork package and actions that you can access.
To build the action into the system, you will typically need to add a Web Item Module to link to your action.
<xwork key="viewCloverResult" name="View Clover Result"> <package name="cloverPlugin" extends="buildView"> <action name="viewCloverResult" class="com.atlassian.bamboo.build.ViewBuildResults"> <result name="success" type="freemarker">/plugins/clover-plugin/viewCloverResult.ftl</result> <result name="error" type="freemarker">/error.ftl</result> </action> </package> </xwork>