Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Once you are ready to deploy, you might would like to get rid of Wicket debug features provided by the console. Just change development to deployment at the beginning of Edit console/src/main/webapp/WEB-INF/web.xml, and change development to deployment as in the following configuration fragment (from 1.1 onwards you will have to explicitly add this):

Code Block

<context-param>
     <param-name>configuration</param-name>
     <param-value>development</param-value>
</context-param>

Build and deploy

Assuming that you have created the two deployment directories defined above, just run

...