Upgrading to Tomahawk 1.1.3
Dummy Form deprecation
Starting with this release the dummyForm has been deprecated. This means, any commandLink/commandButton/navigationMenu etc not embedded in an form will throw an exception. We've decided to do so to make MyFaces JSF applications more inter-operable with the JSF RI.
If you use the MyFaces JSF implementation you can reenable this feature by adding the following to your faces-config.xml, though, you should consider changing your JSF pages (place a h:form in it) as we dont know if and when this feature will find its way back into the main development.
<renderer>
<component-family>javax.faces.Command</component-family>
<renderer-type>javax.faces.Button</renderer-type>
<renderer-class>org.apache.myfaces.renderkit.html.jsf.ExtendedHtmlButtonRenderer</renderer-class>
</renderer>
<renderer>
<component-family>javax.faces.Command</component-family>
<renderer-type>javax.faces.Link</renderer-type>
<renderer-class>org.apache.myfaces.renderkit.html.jsf.ExtendedHtmlLinkRenderer</renderer-class>
</renderer>Sorry for the inconvenience.