From: <jbo...@li...> - 2005-11-09 14:23:37
|
Author: aron.gombas Date: 2005-11-09 09:23:29 -0500 (Wed, 09 Nov 2005) New Revision: 1540 Added: trunk/labs/kosmos/build/portlet-exo-deploy.properties trunk/labs/kosmos/deploy-portlet-exo.xml Modified: trunk/labs/kosmos/conf-portlet/exo/web.xml Log: eXo deployment files added Added: trunk/labs/kosmos/build/portlet-exo-deploy.properties =================================================================== --- trunk/labs/kosmos/build/portlet-exo-deploy.properties 2005-11-09 14:14:48 UTC (rev 1539) +++ trunk/labs/kosmos/build/portlet-exo-deploy.properties 2005-11-09 14:23:29 UTC (rev 1540) @@ -0,0 +1 @@ +container.dir=${env.CATALINA_HOME}/webapps/${war.name} Modified: trunk/labs/kosmos/conf-portlet/exo/web.xml =================================================================== --- trunk/labs/kosmos/conf-portlet/exo/web.xml 2005-11-09 14:14:48 UTC (rev 1539) +++ trunk/labs/kosmos/conf-portlet/exo/web.xml 2005-11-09 14:23:29 UTC (rev 1540) @@ -6,7 +6,7 @@ xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-app_2_4.xsd" version="2.4"> - <display-name>kosmos-portlet</display-name><!-- required to be identical with the web-app name, by eXo --> + <display-name>kosmos-portlet.war</display-name><!-- required to be identical with the web-app name, by eXo --> <description>Kosmos is a portlet-based web application. It can run only inside a portlet container.</description> <!-- JSTL configuration --> @@ -29,16 +29,4 @@ <servlet-name>PortletWrapper</servlet-name> <url-pattern>/PortletWrapper</url-pattern> </servlet-mapping> - - <!-- JSP configuration --> -<!-- - <taglib> - <taglib-uri>http://labs.jboss.com/projects/kosmos</taglib-uri> - <taglib-location>/WEB-INF/tld/kosmos-taglib.tld</taglib-location> - </taglib> - <taglib> - <taglib-uri>http://displaytag.sf.net/el</taglib-uri> - <taglib-location>/WEB-INF/tld/displaytag-el-12.tld</taglib-location> - </taglib> ---> </web-app> Added: trunk/labs/kosmos/deploy-portlet-exo.xml =================================================================== --- trunk/labs/kosmos/deploy-portlet-exo.xml 2005-11-09 14:14:48 UTC (rev 1539) +++ trunk/labs/kosmos/deploy-portlet-exo.xml 2005-11-09 14:23:29 UTC (rev 1540) @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Kosmos Portlet deploy-script for eXo Platform --> +<!-- $Id$ --> +<project basedir="." default="redeploy" name="Kosmos Portlet on eXo Platform"> + <description>Kosmos Portlet Module deploy-file</description> + + <property name="module.name" value="portlet"/> + <property name="container.name" value="exo"/> + <import file="build/deploy.xml"/> +</project> |