You are viewing a plain text version of this content. The canonical link for it is here.
Posted to portalapps-dev@portals.apache.org by wo...@apache.org on 2010/05/19 12:57:17 UTC

svn commit: r946121 [3/3] - in /portals/applications/sandbox/content/trunk: ./ apa-content-portlet/ apa-content-portlet/src/ apa-content-portlet/src/main/ apa-content-portlet/src/main/java/ apa-content-portlet/src/main/java/org/ apa-content-portlet/src...

Added: portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/view/simple-search-query-content-help.jsp
URL: http://svn.apache.org/viewvc/portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/view/simple-search-query-content-help.jsp?rev=946121&view=auto
==============================================================================
--- portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/view/simple-search-query-content-help.jsp (added)
+++ portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/view/simple-search-query-content-help.jsp Wed May 19 10:57:15 2010
@@ -0,0 +1,144 @@
+<%--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+--%>
+<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
+<%@ taglib prefix="fmt-portlet" uri="http://portals.apache.org/applications/gems/fmt-portlet" %>
+<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
+<%@ taglib uri="http://java.sun.com/portlet" prefix="portlet"%>
+<portlet:defineObjects/>
+<fmt-portlet:setBundle/>
+
+<h1>Simple XPath JCR Sample Queries</h1>
+<hr/>
+
+<p>This page contains some examples XPath queries that can be used in this portlet.</p>
+
+<p>&nbsp;</p>
+
+<h2>All documents of 'onehippo:document' type:</h2>
+<table>
+  <tr>
+    <td class="portlet-section-body">
+      <code>
+        //element(*, onehippo:document)
+      </code>
+    </td>
+  </tr>
+</table>
+
+<p>&nbsp;</p>
+
+<h2>All documents of 'onehippo:document' type under /jcr:root/content/documents/en/ folder:</h2>
+<table>
+  <tr>
+    <td class="portlet-section-body">
+      <code>
+        /jcr:root/content/documents/en//element(*, onehippo:document)
+      </code>
+    </td>
+  </tr>
+</table>
+
+<p>&nbsp;</p>
+
+<h2>All documents of 'onehippo:document' type under /jcr:root/content/documents/en/ folder with full text search by 'cms':</h2>
+<table>
+  <tr>
+    <td class="portlet-section-body">
+      <code>
+        /jcr:root/content/documents/en//element(*, onehippo:document) [jcr:contains(., 'cms')]
+      </code>
+    </td>
+  </tr>
+</table>
+
+<p>&nbsp;</p>
+
+<h2>All documents of 'onehippo:document' type under /jcr:root/content/documents/en/ folder with full text search by 'cms' ordered by jcr:score:</h2>
+<table>
+  <tr>
+    <td class="portlet-section-body">
+      <code>
+        /jcr:root/content/documents/en//element(*, onehippo:document) [jcr:contains(., 'cms')] order by @jcr:score descending
+      </code>
+    </td>
+  </tr>
+</table>
+
+<p>&nbsp;</p>
+
+<h2>All documents of 'onehippo:document' type under /jcr:root/content/documents/en/ folder with full text search by 'cms' ordered by onehippo:documentdate:</h2>
+<table>
+  <tr>
+    <td class="portlet-section-body">
+      <code>
+        /jcr:root/content/documents/en//element(*, onehippo:document) [jcr:contains(., 'cms')] order by @onehippo:documentdate descending
+      </code>
+    </td>
+  </tr> 
+</table>
+
+<p>&nbsp;</p>
+
+<h2>All documents of 'onehippo:document' type under /jcr:root/content/documents/en/ folder with full text search by 'cms' on @onehippo:title:</h2>
+<table>
+  <tr>
+    <td class="portlet-section-body">
+      <code>
+        /jcr:root/content/documents/en//element(*, onehippo:document) [jcr:contains(@onehippo:title, 'cms')]
+      </code>
+    </td>
+  </tr> 
+</table>
+
+<p>&nbsp;</p>
+
+<h2>All documents of 'onehippo:document' type under /jcr:root/content/documents/en/ folder with full text search by 'cms' on @onehippo:title and @hippostd:state property has 'published' value:</h2>
+<table>
+  <tr>
+    <td class="portlet-section-body">
+      <code>
+        /jcr:root/content/documents/en//element(*, onehippo:document) [jcr:contains(@onehippo:title, 'cms') and @hippostd:state = 'published']
+      </code>
+    </td>
+  </tr> 
+</table>
+
+<p>&nbsp;</p>
+
+<h2>All documents of 'onehippo:document' type under /jcr:root/content/documents/en/ folder with full text search by 'cms' on @onehippo:title and @hippostd:state property value is not 'published':</h2>
+<table>
+  <tr>
+    <td class="portlet-section-body">
+      <code>
+        /jcr:root/content/documents/en//element(*, onehippo:document) [jcr:contains(@onehippo:title, 'cms') and @hippostd:state != 'published']
+      </code>
+    </td>
+  </tr> 
+</table>
+
+<p>&nbsp;</p>
+
+<h2>All documents of 'onehippo:document' type under /jcr:root/content/documents/en/ folder with full text search by 'cms' on @onehippo:title and @onehippo:documentdate property value is greater than January 1, 2009:</h2>
+<table>
+  <tr>
+    <td class="portlet-section-body">
+      <code>
+        /jcr:root/content/documents/en//element(*, onehippo:document) [jcr:contains(@onehippo:title, 'cms') and @onehippo:documentdate > xs:dateTime('2009-01-01T00:00:00.000Z')]
+      </code>
+    </td>
+  </tr> 
+</table>

Propchange: portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/view/simple-search-query-content-help.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/view/simple-search-query-content-help.jsp
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/view/simple-search-query-content-view.jsp
URL: http://svn.apache.org/viewvc/portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/view/simple-search-query-content-view.jsp?rev=946121&view=auto
==============================================================================
--- portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/view/simple-search-query-content-view.jsp (added)
+++ portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/view/simple-search-query-content-view.jsp Wed May 19 10:57:15 2010
@@ -0,0 +1,71 @@
+<%--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+--%>
+<%@ page import="org.apache.jetspeed.request.RequestContext"%>
+<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
+<%@ taglib prefix="c_rt" uri="http://java.sun.com/jstl/core_rt" %>
+<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
+<%@ taglib prefix="fmt-portlet" uri="http://portals.apache.org/applications/gems/fmt-portlet" %>
+<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
+<%@ taglib uri="http://java.sun.com/portlet" prefix="portlet"%>
+<portlet:defineObjects/>
+<fmt-portlet:setBundle/>
+
+<c_rt:set var="requestContext" value="<%=request.getAttribute(RequestContext.REQUEST_PORTALENV)%>"/>
+<c:set var="portalContextPath" value="${requestContext.request.contextPath}" />
+<c:if test="${empty portalContextPath}">
+  <c:set var="portalContextPath" value="/"/>
+</c:if>
+<c:set var="portalServletPath" value="${requestContext.request.servletPath}" />
+
+<h1>Simple search query</h1>
+<hr/>
+
+<form method="POST" action="<portlet:actionURL/>">
+Enter XPath Query:<br/>
+<textarea name="fullQueryJcrExpression" style="WIDTH: 90%" cols="80" rows="4">${fullQueryJcrExpression}</textarea>
+<br/>
+<input type="submit" name="submit" value="Search"/>
+</form>
+
+<hr/>
+
+<c:forEach var="contentItem" items="${contentBean}">
+<h3><a href="${portalContextPath}${portalServletPath}/content${fn:substringAfter(contentItem.path, contentUrlBase)}">${contentItem.title}</a></h3>
+<div align="right">(${contentItem.documentDate})</div>
+<div>${contentItem.introduction}</div>
+<p>&nbsp;</p>
+</c:forEach>
+
+<hr/>
+
+Pages: 
+<c:forEach begin="1" end="${pageCount}" var="index">
+  &nbsp;
+  <c:choose>
+    <c:when test="${index == pageIndex}">
+      ${index}
+    </c:when>
+    <c:otherwise>
+      <portlet:renderURL var="pageURL">
+        <portlet:param name="fullQueryJcrExpression" value="${fullQueryJcrExpression}"/>
+        <portlet:param name="page" value="${index}"/>
+      </portlet:renderURL>
+      <a href="${pageURL}">${index}</a>
+    </c:otherwise>
+  </c:choose>
+  &nbsp;
+</c:forEach>

Propchange: portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/view/simple-search-query-content-view.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/view/simple-search-query-content-view.jsp
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/web.xml?rev=946121&view=auto
==============================================================================
--- portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/web.xml (added)
+++ portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/web.xml Wed May 19 10:57:15 2010
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements. See the NOTICE file distributed with this
+  work for additional information regarding copyright ownership. The ASF
+  licenses this file to You under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
+  or agreed to in writing, software distributed under the License is
+  distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the specific language
+  governing permissions and limitations under the License.
+-->
+<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4"
+    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee   http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
+    
+  <display-name>Content Portlet Application</display-name>
+  <description>Content Portlet Application</description>
+  
+  <!-- for deploying on Websphere: disable Websphere default portletcontainer -->
+  <context-param>
+    <param-name>com.ibm.websphere.portletcontainer.PortletDeploymentEnabled</param-name>
+    <param-value>false</param-value>
+  </context-param>
+  
+  <context-param>
+    <param-name>defaultRepositoryUsername</param-name>
+    <param-value>editor</param-value>
+  </context-param>
+  
+  <context-param>
+    <param-name>defaultRepositoryPassword</param-name>
+    <param-value>editor</param-value>
+  </context-param>
+  
+</web-app>

Propchange: portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/applications/sandbox/content/trunk/apa-content-webapp/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: portals/applications/sandbox/content/trunk/build.xml
URL: http://svn.apache.org/viewvc/portals/applications/sandbox/content/trunk/build.xml?rev=946121&r1=946120&r2=946121&view=diff
==============================================================================
--- portals/applications/sandbox/content/trunk/build.xml (original)
+++ portals/applications/sandbox/content/trunk/build.xml Wed May 19 10:57:15 2010
@@ -23,8 +23,7 @@
   <property name="module.artifactId" value="apa-content" />
   <property name="module.version" value="1.0" />
   
-  <property name="task.class.path" value="${basedir}/target/apa-content/WEB-INF/classes" />
-  <property name="task.libs.dir" value="${basedir}/target/apa-content/WEB-INF/lib" />
+  <property name="task.libs.dir" value="${basedir}/apa-content-webapp/target/apa-content/WEB-INF/lib" />
     
   <path id="task.classpath">
     <fileset dir="${task.libs.dir}" includes="**/*.jar" />
@@ -32,7 +31,7 @@
   
   <taskdef name="import" 
   	       classname="org.apache.portals.applications.content.tools.ant.Import" 
-  	       classpath="${task.class.path}" classpathref="task.classpath" />
+  	       classpathref="task.classpath" />
   
   <target name="help">
   	<echo><![CDATA[

Added: portals/applications/sandbox/content/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/sandbox/content/trunk/pom.xml?rev=946121&view=auto
==============================================================================
--- portals/applications/sandbox/content/trunk/pom.xml (added)
+++ portals/applications/sandbox/content/trunk/pom.xml Wed May 19 10:57:15 2010
@@ -0,0 +1,258 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+  $Id:$
+-->
+<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>
+
+  <!-- POM Identification -->
+  <parent>
+    <groupId>org.apache.portals</groupId>
+    <artifactId>applications-pom</artifactId>
+    <version>1.2</version>
+  </parent>
+
+  <groupId>org.apache.portals.applications</groupId>
+  <artifactId>apa-content</artifactId>
+  <packaging>pom</packaging>
+  <name>Apache Portals Applications Content</name>
+  <version>1.0-SNAPSHOT</version>
+  <description>Content Portlet Application</description>
+
+  <properties>
+    <javax.servlet.version>2.4</javax.servlet.version>
+    <portals.portlet2-api-spec.version>1.0</portals.portlet2-api-spec.version>
+    <javax.servlet.jstl.version>1.1.2</javax.servlet.jstl.version>
+    <jta.version>1.1</jta.version>
+    <taglibs-standard.version>1.1.2</taglibs-standard.version>
+    <org.apache.portals.bridges.common.version>2.0</org.apache.portals.bridges.common.version>
+    <portals.applications.apa-gems.version>1.1</portals.applications.apa-gems.version>
+    <javax.jcr.version>1.0</javax.jcr.version>
+    <jackrabbit.version>1.5.0</jackrabbit.version>
+    <ant.version>1.7.1</ant.version>
+    <commons-lang.version>2.4</commons-lang.version>
+    <slf4j.version>1.5.6</slf4j.version>
+    <log4j.version>1.2.14</log4j.version>
+    <jetspeed.version>2.2.1</jetspeed.version>
+    <hippo-ecm.version>2.12.06</hippo-ecm.version>
+    <hst.version>2.04.07-SNAPSHOT</hst.version>
+  </properties>
+  
+  <dependencyManagement>
+    
+    <dependencies>
+    
+      <dependency>
+        <groupId>javax.servlet</groupId>
+        <artifactId>servlet-api</artifactId>
+        <version>${javax.servlet.version}</version>
+        <scope>provided</scope>
+      </dependency>
+  
+      <dependency>
+        <groupId>org.apache.portals.jetspeed-2</groupId>
+        <artifactId>jetspeed-api</artifactId>
+        <version>${jetspeed.version}</version>
+        <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.apache.portals</groupId>
+        <artifactId>portlet-api_2.0_spec</artifactId>
+        <version>${portals.portlet2-api-spec.version}</version>
+        <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.apache.portals.bridges</groupId>
+        <artifactId>portals-bridges-common</artifactId>
+        <version>${org.apache.portals.bridges.common.version}</version>
+        <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.apache.ant</groupId>
+        <artifactId>ant</artifactId>
+        <version>${ant.version}</version>
+        <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.apache.portals.applications</groupId>
+        <artifactId>apa-gems</artifactId>
+        <version>${portals.applications.apa-gems.version}</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>javax.servlet</groupId>
+        <artifactId>jstl</artifactId>
+        <version>${javax.servlet.jstl.version}</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>taglibs</groupId>
+        <artifactId>standard</artifactId>
+        <version>${taglibs-standard.version}</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>javax.jcr</groupId>
+        <artifactId>jcr</artifactId>
+        <version>${javax.jcr.version}</version>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-jcr-rmi</artifactId>
+        <version>${jackrabbit.version}</version>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-ocm</artifactId>
+        <version>${jackrabbit.version}</version>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.apache.geronimo.specs</groupId>
+        <artifactId>geronimo-jta_1.1_spec</artifactId>
+        <version>${jta.version}</version>
+      </dependency>
+      
+      <dependency>
+        <groupId>commons-lang</groupId>
+        <artifactId>commons-lang</artifactId>
+        <version>${commons-lang.version}</version>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.slf4j</groupId>
+        <artifactId>slf4j-api</artifactId>
+        <version>${slf4j.version}</version>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.slf4j</groupId>
+        <artifactId>slf4j-log4j12</artifactId>
+        <version>${slf4j.version}</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.slf4j</groupId>
+        <artifactId>jcl-over-slf4j</artifactId>
+        <version>${slf4j.version}</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>log4j</groupId>
+        <artifactId>log4j</artifactId>
+        <version>${log4j.version}</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.hippoecm</groupId>
+        <artifactId>hippo-ecm-api</artifactId>
+        <version>${hippo-ecm.version}</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.hippoecm</groupId>
+        <artifactId>hippo-ecm-repository-connector</artifactId>
+        <version>${hippo-ecm.version}</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.onehippo.ecm.hst</groupId>
+        <artifactId>hst-api</artifactId>
+        <version>${hst.version}</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.onehippo.ecm.hst</groupId>
+        <artifactId>hst-commons</artifactId>
+        <version>${hst.version}</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.onehippo.ecm.hst.components</groupId>
+        <artifactId>hst-session-pool</artifactId>
+        <version>${hst.version}</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.onehippo.ecm.hst</groupId>
+        <artifactId>hst-content-beans</artifactId>
+        <version>${hst.version}</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.onehippo.ecm.hst.testsuite.sandbox</groupId>
+        <artifactId>hst-ocm</artifactId>
+        <version>${hst.version}</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+    </dependencies>
+    
+  </dependencyManagement>
+  
+  <!-- Application Modules -->
+
+  <modules>
+    <module>apa-content-portlet</module>
+    <module>apa-content-tools</module>
+    <module>apa-content-webapp</module>
+  </modules>
+
+  <!-- Project Information -->
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/portals/applications/sandbox/content/trunk/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/applications/sandbox/content/trunk/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/portals/applications/sandbox/content/trunk/</url>
+  </scm>
+  
+  <profiles>
+    <profile>
+      <id>apache-release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <!-- only include this in top level project poms -->
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-assembly-plugin</artifactId>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+  
+</project>

Propchange: portals/applications/sandbox/content/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/applications/sandbox/content/trunk/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Propchange: portals/applications/sandbox/content/trunk/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain