Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 778 | blopes | 1 | <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" |
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||
| 3 | xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee |
||
| 4 | http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" |
||
| 5 | version="3.1"> |
||
| 6 | |||
| 7 | <display-name>Kronus Trading Bot</display-name> |
||
| 8 | |||
| 9 | <welcome-file-list> |
||
| 10 | <welcome-file>kronus/kronus_dashboard.xhtml</welcome-file> |
||
| 11 | </welcome-file-list> |
||
| 12 | |||
| 13 | <servlet> |
||
| 14 | <servlet-name>Faces Servlet</servlet-name> |
||
| 15 | <servlet-class>javax.faces.webapp.FacesServlet</servlet-class> |
||
| 16 | <load-on-startup>1</load-on-startup> |
||
| 17 | </servlet> |
||
| 18 | |||
| 19 | <servlet-mapping> |
||
| 20 | <servlet-name>Faces Servlet</servlet-name> |
||
| 21 | <url-pattern>*.xhtml</url-pattern> |
||
| 22 | </servlet-mapping> |
||
| 23 | |||
| 24 | </web-app> |