|
Revision 1938
(checked in by douglm, 5 years ago)
|
Try to do the same for platforms (jboss, tomcat etc) as I just did for portals.
The deployment directories are much simplified and the build process seems a bit clearer.
|
| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="UTF-8" ?> |
|---|
| 2 |
<!-- |
|---|
| 3 |
Based on jpetstore example application with contributions from: |
|---|
| 4 |
|
|---|
| 5 |
Author: Xavier Lawrence @ jahia . com |
|---|
| 6 |
Author: Mike Douglass douglm @ rpi . edu |
|---|
| 7 |
--> |
|---|
| 8 |
<portlet-app id="calApp" version="1.0"> |
|---|
| 9 |
<portlet id="@CONTEXT-ROOT@.@PORTLET-NAME@"> |
|---|
| 10 |
<portlet-name>@PORTLET-NAME@</portlet-name> |
|---|
| 11 |
<display-name>@DISPLAY-NAME@</display-name> |
|---|
| 12 |
<portlet-class>@PORTLET-CLASS@</portlet-class> |
|---|
| 13 |
<init-param> |
|---|
| 14 |
<name>ServletContextProvider</name> |
|---|
| 15 |
<value>@PORTAL-SERVLET-CONTEXT-PROVIDER@</value> |
|---|
| 16 |
</init-param> |
|---|
| 17 |
<init-param> |
|---|
| 18 |
<name>ViewPage</name> |
|---|
| 19 |
<value>/main/initialise.rdo</value> |
|---|
| 20 |
</init-param> |
|---|
| 21 |
<description>@APP-DESCRIPTION@ |
|---|
| 22 |
</description> |
|---|
| 23 |
<expiration-cache>-1</expiration-cache> |
|---|
| 24 |
<supports> |
|---|
| 25 |
<mime-type>text/html</mime-type> |
|---|
| 26 |
<portlet-mode>VIEW</portlet-mode> |
|---|
| 27 |
<!--<portlet-mode>HELP</portlet-mode>--> |
|---|
| 28 |
</supports> |
|---|
| 29 |
<portlet-info> |
|---|
| 30 |
<title>@PORTLET-NAME@</title> |
|---|
| 31 |
<short-title>@PORTLET-NAME@</short-title> |
|---|
| 32 |
<keywords>Struts, XSLT, Bedework, Calendar, Events</keywords> |
|---|
| 33 |
</portlet-info> |
|---|
| 34 |
</portlet> |
|---|
| 35 |
</portlet-app> |
|---|
| 36 |
|
|---|