Author: mpodolin
Date: 2010-07-17 06:28:10 -0400 (Sat, 17 Jul 2010)
New Revision: 3641
Added:
portal/trunk/packaging/integration.war/
portal/trunk/packaging/integration.war/pom.xml
portal/trunk/packaging/integration.war/src/
portal/trunk/packaging/integration.war/src/main/
portal/trunk/packaging/integration.war/src/main/webapp/
portal/trunk/packaging/integration.war/src/main/webapp/WEB-INF/
portal/trunk/packaging/integration.war/src/main/webapp/WEB-INF/Context.xml
portal/trunk/packaging/integration.war/src/main/webapp/WEB-INF/web.xml
Log:
GTNPORTAL-1338: initial version of maven based packaging for jboss-as
Added: portal/trunk/packaging/integration.war/pom.xml
===================================================================
--- portal/trunk/packaging/integration.war/pom.xml (rev 0)
+++ portal/trunk/packaging/integration.war/pom.xml 2010-07-17 10:28:10 UTC (rev 3641)
@@ -0,0 +1,12 @@
+<project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.exoplatform.portal</groupId>
+ <artifactId>exo.portal.parent</artifactId>
+ <version>3.2.0-Beta01-SNAPSHOT</version>
+ </parent>
+ <artifactId>exo.portal.packaging.jboss-as.integration</artifactId>
+ <packaging>war</packaging>
+ <name>GateIn JBoss AS integration.war</name>
+</project>
\ No newline at end of file
Added: portal/trunk/packaging/integration.war/src/main/webapp/WEB-INF/Context.xml
===================================================================
--- portal/trunk/packaging/integration.war/src/main/webapp/WEB-INF/Context.xml
(rev 0)
+++ portal/trunk/packaging/integration.war/src/main/webapp/WEB-INF/Context.xml 2010-07-17
10:28:10 UTC (rev 3641)
@@ -0,0 +1,23 @@
+<!--
+
+ Copyright (C) 2009 eXo Platform SAS.
+
+ This is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation; either version 2.1 of
+ the License, or (at your option) any later version.
+
+ This software is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this software; if not, write to the Free
+ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+
+-->
+
+<Context privileged="true"> <!-- crossContext="true"
-->
+</Context>
\ No newline at end of file
Added: portal/trunk/packaging/integration.war/src/main/webapp/WEB-INF/web.xml
===================================================================
--- portal/trunk/packaging/integration.war/src/main/webapp/WEB-INF/web.xml
(rev 0)
+++ portal/trunk/packaging/integration.war/src/main/webapp/WEB-INF/web.xml 2010-07-17
10:28:10 UTC (rev 3641)
@@ -0,0 +1,36 @@
+<?xml version="1.0"?>
+<!--
+
+ Copyright (C) 2009 eXo Platform SAS.
+
+ This is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation; either version 2.1 of
+ the License, or (at your option) any later version.
+
+ This software is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this software; if not, write to the Free
+ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+
+-->
+
+<!DOCTYPE web-app PUBLIC
+ "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
+ "http://java.sun.com/dtd/web-app_2_3.dtd">
+<web-app>
+ <context-param>
+ <param-name>jboss.portal.mc.beans_resource_type</param-name>
+ <param-value>classloader</param-value>
+ </context-param>
+ <servlet>
+ <servlet-name>ContainerServlet</servlet-name>
+
<servlet-class>org.gatein.wci.tomcat.TC6ContainerServlet</servlet-class>
+ <load-on-startup>1</load-on-startup>
+ </servlet>
+</web-app>