<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>pluto-scm@portals.apache.org Archives</title>
<link rel="self" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/?format=atom"/>
<link href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/"/>
<id>http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/</id>
<updated>2009-12-07T16:30:35Z</updated>
<entry>
<title>svn commit: r886700 - in /portals/pluto/trunk: pluto-container-api/pom.xml pluto-container-driver-api/pom.xml pluto-container/pom.xml pluto-portal-driver-impl/pom.xml pluto-portal-driver/pom.xml pluto-taglib/pom.xml pluto-util/pom.xml pom.xml</title>
<author><name>djencks@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200912.mbox/%3c20091203081036.79D062388893@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091203081036-79D062388893@eris-apache-org%3e</id>
<updated>2009-12-03T08:10:34Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: djencks
Date: Thu Dec  3 08:10:31 2009
New Revision: 886700

URL: http://svn.apache.org/viewvc?rev=886700&amp;view=rev
Log:
PLUTO-585 use the felix maven plugin to build osgi bundles instead of plain jars. Make some
osgi package imports optional. Not yet completely running in an osgi environment but jars
at least load.

Modified:
    portals/pluto/trunk/pluto-container-api/pom.xml
    portals/pluto/trunk/pluto-container-driver-api/pom.xml
    portals/pluto/trunk/pluto-container/pom.xml
    portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
    portals/pluto/trunk/pluto-portal-driver/pom.xml
    portals/pluto/trunk/pluto-taglib/pom.xml
    portals/pluto/trunk/pluto-util/pom.xml
    portals/pluto/trunk/pom.xml

Modified: portals/pluto/trunk/pluto-container-api/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container-api/pom.xml?rev=886700&amp;r1=886699&amp;r2=886700&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container-api/pom.xml (original)
+++ portals/pluto/trunk/pluto-container-api/pom.xml Thu Dec  3 08:10:31 2009
@@ -27,6 +27,7 @@
 	&lt;/parent&gt;
 
 	&lt;artifactId&gt;pluto-container-api&lt;/artifactId&gt;
+    &lt;packaging&gt;bundle&lt;/packaging&gt;
 	&lt;name&gt;Apache Pluto Container API&lt;/name&gt;
 	
 	&lt;dependencies&gt;
@@ -51,6 +52,21 @@
     
 	&lt;/dependencies&gt;
 
+    &lt;build&gt;
+        &lt;plugins&gt;
+            &lt;plugin&gt;
+              &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
+              &lt;artifactId&gt;maven-bundle-plugin&lt;/artifactId&gt;
+              &lt;configuration&gt;
+                &lt;instructions&gt;
+                    &lt;Import-Package&gt;javax.ccpp;resolution:=optional,*&lt;/Import-Package&gt;
+                &lt;/instructions&gt;
+              &lt;/configuration&gt;
+            &lt;/plugin&gt;
+        &lt;/plugins&gt;
+
+    &lt;/build&gt;
+
     &lt;!-- Don't create distribution artifacts --&gt;
     &lt;profiles&gt;
         &lt;profile&gt;

Modified: portals/pluto/trunk/pluto-container-driver-api/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container-driver-api/pom.xml?rev=886700&amp;r1=886699&amp;r2=886700&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container-driver-api/pom.xml (original)
+++ portals/pluto/trunk/pluto-container-driver-api/pom.xml Thu Dec  3 08:10:31 2009
@@ -27,7 +27,7 @@
 	&lt;/parent&gt;
 
 	&lt;artifactId&gt;pluto-container-driver-api&lt;/artifactId&gt;
-	&lt;packaging&gt;jar&lt;/packaging&gt;
+    &lt;packaging&gt;bundle&lt;/packaging&gt;
 	&lt;name&gt;Apache Pluto Container Driver API&lt;/name&gt;
 	
 	&lt;dependencies&gt;
@@ -57,7 +57,21 @@
             &lt;scope&gt;compile&lt;/scope&gt;
         &lt;/dependency&gt;
 	&lt;/dependencies&gt;
+    &lt;build&gt;
+        &lt;plugins&gt;
+            &lt;plugin&gt;
+              &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
+              &lt;artifactId&gt;maven-bundle-plugin&lt;/artifactId&gt;
+              &lt;configuration&gt;
+                &lt;instructions&gt;
+                    &lt;Import-Package&gt;javax.ccpp;resolution:=optional,*&lt;/Import-Package&gt;
+                &lt;/instructions&gt;
+              &lt;/configuration&gt;
+            &lt;/plugin&gt;
+        &lt;/plugins&gt;
 
+    &lt;/build&gt;
+   
     &lt;!-- Don't create distribution artifacts --&gt;
     &lt;profiles&gt;
         &lt;profile&gt;

Modified: portals/pluto/trunk/pluto-container/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container/pom.xml?rev=886700&amp;r1=886699&amp;r2=886700&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container/pom.xml (original)
+++ portals/pluto/trunk/pluto-container/pom.xml Thu Dec  3 08:10:31 2009
@@ -27,6 +27,7 @@
     &lt;/parent&gt;
   
     &lt;artifactId&gt;pluto-container&lt;/artifactId&gt;
+    &lt;packaging&gt;bundle&lt;/packaging&gt;
     &lt;name&gt;Apache Pluto Portlet Container&lt;/name&gt;
     &lt;description&gt;The Apache Pluto portlet container.&lt;/description&gt;
 
@@ -145,6 +146,20 @@
                     &lt;/excludes&gt;
                 &lt;/configuration&gt;
             &lt;/plugin&gt;
+            &lt;plugin&gt;
+              &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
+              &lt;artifactId&gt;maven-bundle-plugin&lt;/artifactId&gt;
+              &lt;configuration&gt;
+                &lt;instructions&gt;
+                    &lt;Export-Package&gt;org.apache.pluto.container.impl,
+                        org.apache.pluto.container.om.portlet.impl,
+                        org.apache.pluto.container.om.portlet10.impl,
+                        org.apache.pluto.container.util
+                    &lt;/Export-Package&gt;
+                    &lt;Import-Package&gt;javax.ccpp;resolution:=optional,*&lt;/Import-Package&gt;
+                &lt;/instructions&gt;
+              &lt;/configuration&gt;
+            &lt;/plugin&gt;
         &lt;/plugins&gt;
     &lt;/build&gt;
 

Modified: portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver-impl/pom.xml?rev=886700&amp;r1=886699&amp;r2=886700&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver-impl/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver-impl/pom.xml Thu Dec  3 08:10:31 2009
@@ -27,6 +27,7 @@
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-portal-driver-impl&lt;/artifactId&gt;
+    &lt;packaging&gt;bundle&lt;/packaging&gt;
     &lt;name&gt;Apache Pluto Portal Driver Implementation Classes&lt;/name&gt;
 
     &lt;dependencies&gt;
@@ -134,6 +135,25 @@
         &lt;/dependency&gt;
     &lt;/dependencies&gt;
 
+    &lt;build&gt;
+        &lt;plugins&gt;
+            &lt;plugin&gt;
+              &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
+              &lt;artifactId&gt;maven-bundle-plugin&lt;/artifactId&gt;
+              &lt;configuration&gt;
+                &lt;instructions&gt;
+                    &lt;Export-Package&gt;org.apache.pluto.driver.config.impl,
+                        org.apache.pluto.driver.services.container,
+                        org.apache.pluto.driver.services.impl.resource,
+                        org.apache.pluto.driver.url.impl
+                    &lt;/Export-Package&gt;
+                    &lt;Import-Package&gt;javax.ccpp;resolution:=optional,*&lt;/Import-Package&gt;
+                &lt;/instructions&gt;
+              &lt;/configuration&gt;
+            &lt;/plugin&gt;
+        &lt;/plugins&gt;
+    &lt;/build&gt;
+
     &lt;!-- Don't create distribution artifacts --&gt;
     &lt;profiles&gt;
         &lt;profile&gt;

Modified: portals/pluto/trunk/pluto-portal-driver/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver/pom.xml?rev=886700&amp;r1=886699&amp;r2=886700&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver/pom.xml Thu Dec  3 08:10:31 2009
@@ -17,7 +17,8 @@
   specific language governing permissions and limitations
   under the License.
 --&gt;
-&lt;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"&gt;
+&lt;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"&gt;
 
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
@@ -27,6 +28,7 @@
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-portal-driver&lt;/artifactId&gt;
+    &lt;packaging&gt;bundle&lt;/packaging&gt;
     &lt;name&gt;Apache Pluto Portal Driver&lt;/name&gt;
 
     &lt;dependencies&gt;
@@ -65,17 +67,17 @@
             &lt;artifactId&gt;servlet-api&lt;/artifactId&gt;
             &lt;scope&gt;provided&lt;/scope&gt;
         &lt;/dependency&gt;
-      &lt;!--  CCPP Libraries --&gt;
+        &lt;!--  CCPP Libraries --&gt;
         &lt;dependency&gt;
             &lt;groupId&gt;javax.ccpp&lt;/groupId&gt;
             &lt;artifactId&gt;ccpp&lt;/artifactId&gt;
             &lt;scope&gt;provided&lt;/scope&gt;
         &lt;/dependency&gt;
         &lt;dependency&gt;
-		    &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
-		    &lt;artifactId&gt;jsp-api&lt;/artifactId&gt;
-		    &lt;scope&gt;provided&lt;/scope&gt;
-   	    &lt;/dependency&gt;
+            &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
+            &lt;artifactId&gt;jsp-api&lt;/artifactId&gt;
+            &lt;scope&gt;provided&lt;/scope&gt;
+        &lt;/dependency&gt;
         &lt;dependency&gt;
             &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
             &lt;artifactId&gt;jstl&lt;/artifactId&gt;
@@ -123,8 +125,8 @@
             &lt;groupId&gt;commons-io&lt;/groupId&gt;
             &lt;artifactId&gt;commons-io&lt;/artifactId&gt;
         &lt;/dependency&gt;
-  
-    &lt;!-- Testing Libraries ================================================= --&gt;
+
+        &lt;!-- Testing Libraries ================================================= --&gt;
         &lt;dependency&gt;
             &lt;groupId&gt;org.slf4j&lt;/groupId&gt;
             &lt;artifactId&gt;slf4j-jdk14&lt;/artifactId&gt;
@@ -149,11 +151,26 @@
 
     &lt;build&gt;
         &lt;resources&gt;
-             &lt;resource&gt;
-                 &lt;directory&gt;src/main/resources&lt;/directory&gt;
-                 &lt;filtering&gt;true&lt;/filtering&gt;
+            &lt;resource&gt;
+                &lt;directory&gt;src/main/resources&lt;/directory&gt;
+                &lt;filtering&gt;true&lt;/filtering&gt;
             &lt;/resource&gt;
-       &lt;/resources&gt;        
+        &lt;/resources&gt;
+
+        &lt;plugins&gt;
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-bundle-plugin&lt;/artifactId&gt;
+                &lt;configuration&gt;
+                    &lt;instructions&gt;
+                        &lt;Import-Package&gt;javax.ccpp;resolution:=optional,
+                            org.springframework.web.context;resolution:=optional,
+                            *
+                        &lt;/Import-Package&gt;
+                    &lt;/instructions&gt;
+                &lt;/configuration&gt;
+            &lt;/plugin&gt;
+        &lt;/plugins&gt;
     &lt;/build&gt;
 
     &lt;!-- Don't create distribution artifacts --&gt;

Modified: portals/pluto/trunk/pluto-taglib/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-taglib/pom.xml?rev=886700&amp;r1=886699&amp;r2=886700&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-taglib/pom.xml (original)
+++ portals/pluto/trunk/pluto-taglib/pom.xml Thu Dec  3 08:10:31 2009
@@ -27,6 +27,7 @@
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-taglib&lt;/artifactId&gt;
+    &lt;packaging&gt;bundle&lt;/packaging&gt;
     &lt;name&gt;Apache Pluto Portlet Tag Library&lt;/name&gt;
     &lt;description&gt;Apache Pluto's Java Portlet Specification Tag Library implementation&lt;/description&gt;
 

Modified: portals/pluto/trunk/pluto-util/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-util/pom.xml?rev=886700&amp;r1=886699&amp;r2=886700&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-util/pom.xml (original)
+++ portals/pluto/trunk/pluto-util/pom.xml Thu Dec  3 08:10:31 2009
@@ -24,7 +24,9 @@
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;version&gt;2.0.1-SNAPSHOT&lt;/version&gt;
     &lt;/parent&gt;
+    
     &lt;artifactId&gt;pluto-util&lt;/artifactId&gt;
+    &lt;packaging&gt;bundle&lt;/packaging&gt;
     &lt;name&gt;Apache Pluto Utilities&lt;/name&gt;
 
     &lt;!-- The dependencies for the ApplicationServerHook project

Modified: portals/pluto/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pom.xml?rev=886700&amp;r1=886699&amp;r2=886700&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pom.xml (original)
+++ portals/pluto/trunk/pom.xml Thu Dec  3 08:10:31 2009
@@ -485,13 +485,26 @@
                         &lt;target&gt;1.5&lt;/target&gt;
                     &lt;/configuration&gt;
                 &lt;/plugin&gt;
+                &lt;plugin&gt;
+                  &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
+                  &lt;artifactId&gt;maven-bundle-plugin&lt;/artifactId&gt;
+                  &lt;version&gt;2.0.1&lt;/version&gt;
+                  &lt;extensions&gt;true&lt;/extensions&gt;
+                  &lt;configuration&gt;
+                    &lt;instructions&gt;
+                      &lt;Implementation-Title&gt;${project.name}&lt;/Implementation-Title&gt;
+                      &lt;Implementation-Version&gt;${project.version}&lt;/Implementation-Version&gt;
+                      &lt;Bundle-DocURL&gt;${project.url}&lt;/Bundle-DocURL&gt;
+                    &lt;/instructions&gt;
+                  &lt;/configuration&gt;
+                &lt;/plugin&gt;
             &lt;/plugins&gt;
         &lt;/pluginManagement&gt;
         
         &lt;plugins&gt;
             &lt;plugin&gt;
-                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-                &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
+              &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
+              &lt;artifactId&gt;maven-bundle-plugin&lt;/artifactId&gt;
             &lt;/plugin&gt;
         &lt;/plugins&gt;
     &lt;/build&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r886695 - /portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/services/portal/admin/RenderConfigAdminService.java</title>
<author><name>djencks@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200912.mbox/%3c20091203080655.804CD2388893@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091203080655-804CD2388893@eris-apache-org%3e</id>
<updated>2009-12-03T08:06:46Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: djencks
Date: Thu Dec  3 08:06:40 2009
New Revision: 886695

URL: http://svn.apache.org/viewvc?rev=886695&amp;view=rev
Log:
PLUTO-387. Remove page functionality got lost on way to 2.0?

Modified:
    portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/services/portal/admin/RenderConfigAdminService.java

Modified: portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/services/portal/admin/RenderConfigAdminService.java
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/services/portal/admin/RenderConfigAdminService.java?rev=886695&amp;r1=886694&amp;r2=886695&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/services/portal/admin/RenderConfigAdminService.java
(original)
+++ portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/services/portal/admin/RenderConfigAdminService.java
Thu Dec  3 08:06:40 2009
@@ -28,7 +28,8 @@
  */
 public interface RenderConfigAdminService {
 
-    public void addPage(PageConfig config)
-        throws DriverConfigurationException;
+    void addPage(PageConfig config) throws DriverConfigurationException;
 
+    void removePage(PageConfig pageConfig) throws DriverConfigurationException;
+    
 }




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r823509 - in /portals/pluto/trunk/pluto-container/src: main/java/org/apache/pluto/container/impl/PortletAppDescriptorServiceImpl.java test/java/org/apache/pluto/container/impl/JaxBDescriptorServiceImplTest.java</title>
<author><name>woonsan@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200910.mbox/%3c20091009103434.AA89323888C2@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091009103434-AA89323888C2@eris-apache-org%3e</id>
<updated>2009-10-09T10:34:34Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: woonsan
Date: Fri Oct  9 10:34:34 2009
New Revision: 823509

URL: http://svn.apache.org/viewvc?rev=823509&amp;view=rev
Log:
PLUTO-580: Allowing portlet descriptors which do not have namespace uris but have version
attributes.

Modified:
    portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/container/impl/PortletAppDescriptorServiceImpl.java
    portals/pluto/trunk/pluto-container/src/test/java/org/apache/pluto/container/impl/JaxBDescriptorServiceImplTest.java

Modified: portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/container/impl/PortletAppDescriptorServiceImpl.java
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/container/impl/PortletAppDescriptorServiceImpl.java?rev=823509&amp;r1=823508&amp;r2=823509&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/container/impl/PortletAppDescriptorServiceImpl.java
(original)
+++ portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/container/impl/PortletAppDescriptorServiceImpl.java
Fri Oct  9 10:34:34 2009
@@ -31,6 +31,11 @@
 import javax.xml.namespace.NamespaceContext;
 import javax.xml.parsers.DocumentBuilder;
 import javax.xml.parsers.DocumentBuilderFactory;
+import javax.xml.stream.XMLInputFactory;
+import javax.xml.stream.XMLStreamException;
+import javax.xml.stream.XMLStreamReader;
+import javax.xml.stream.events.XMLEvent;
+import javax.xml.stream.util.StreamReaderDelegate;
 import javax.xml.xpath.XPath;
 import javax.xml.xpath.XPathConstants;
 import javax.xml.xpath.XPathFactory;
@@ -142,28 +147,70 @@
      */
     
     @SuppressWarnings("unchecked")
-    public PortletApplicationDefinition read(String name, String contextPath, InputStream
in) throws IOException {
+    public PortletApplicationDefinition read(String name, String contextPath, InputStream
in) throws IOException 
+    {
         JAXBElement app = null;
-        try {
-            JAXBContext jc = JAXBContext.newInstance( 
-                    "org.apache.pluto.container.om.portlet10.impl" + ":" +
-                    "org.apache.pluto.container.om.portlet.impl", PortletAppDescriptorServiceImpl.class.getClassLoader());
-
+        
+        try 
+        {
+            ClassLoader containerClassLoader = PortletAppDescriptorServiceImpl.class.getClassLoader();
+            JAXBContext jc = JAXBContext.newInstance("org.apache.pluto.container.om.portlet10.impl"
+ ":" +
+                                                     "org.apache.pluto.container.om.portlet.impl",

+                                                     containerClassLoader);
+            
+            XMLInputFactory inputFactory = getXMLInputFactory(containerClassLoader);
+            XMLStreamReader streamReader = inputFactory.createXMLStreamReader(in);
+            StreamReaderDelegate delegatingStreamReader = new StreamReaderDelegate(streamReader)
+            {
+                private String adjustedNamespaceURI = null;
+                
+                @Override
+                public int next() throws XMLStreamException
+                {
+                    int eventCode = super.next();
+                    if (eventCode == XMLEvent.START_ELEMENT &amp;&amp; "portlet-app".equals(getLocalName()))
+                    {
+                        String version = getAttributeValue(null, "version");
+                        if ("1.0".equals(version))
+                        {
+                            adjustedNamespaceURI = "http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd";
+                        }
+                        else if ("2.0".equals(version))
+                        {
+                            adjustedNamespaceURI = "http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd";
+                        }
+                    }
+                    return eventCode;
+                }
+                
+                @Override
+                public String getNamespaceURI()
+                {
+                    String namespaceURI = super.getNamespaceURI();
+                    return (namespaceURI != null ? namespaceURI : adjustedNamespaceURI);
+                }
+            };
+            
             Unmarshaller u = jc.createUnmarshaller();
             u.setEventHandler(new javax.xml.bind.helpers.DefaultValidationEventHandler());
 
-            app = (JAXBElement) u.unmarshal(in);                
-        }catch (JAXBException jaxbEx){
+            app = (JAXBElement) u.unmarshal(delegatingStreamReader);                
+        }
+        catch (JAXBException jaxbEx)
+        {
             final IOException ioe = new IOException(jaxbEx.getMessage());
             ioe.initCause(jaxbEx);
             throw ioe;
         }
-        catch(Exception me) {
+        catch(Exception me) 
+        {
             final IOException ioe = new IOException(me.getLocalizedMessage());
             ioe.initCause(me);
             throw new IOException(me.getLocalizedMessage());
         }
+        
         PortletApplicationDefinition pad = null;
+        
         if (app.getValue() instanceof org.apache.pluto.container.om.portlet10.impl.PortletAppType)
         {
              pad = ((org.apache.pluto.container.om.portlet10.impl.PortletAppType)app.getValue()).upgrade();
@@ -172,8 +219,10 @@
         {
             pad = (PortletApplicationDefinition)app.getValue();
         }
+        
         pad.setName(name);
         pad.setContextPath(contextPath);
+        
         return pad;
     }
 
@@ -285,4 +334,34 @@
             throw new IOException(me.getLocalizedMessage());
         }
     }
+    
+    /*
+     * Because this service can be invoked from a portlet servlet with its own context class
loader,
+     * &lt;CODE&gt;XMLInputFactory&lt;/CODE&gt; should be created while the class loader
switched to the container's.
+     */
+    private XMLInputFactory getXMLInputFactory(ClassLoader classLoader)
+    {
+        XMLInputFactory inputFactory = null;
+        ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
+        
+        try
+        {
+            if (contextClassLoader != classLoader)
+            {
+                Thread.currentThread().setContextClassLoader(classLoader);
+            }
+            
+            inputFactory = XMLInputFactory.newInstance();
+        }
+        finally
+        {
+            if (contextClassLoader != classLoader)
+            {
+                Thread.currentThread().setContextClassLoader(contextClassLoader);
+            }
+        }
+        
+        return inputFactory;
+    }
+    
 }

Modified: portals/pluto/trunk/pluto-container/src/test/java/org/apache/pluto/container/impl/JaxBDescriptorServiceImplTest.java
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container/src/test/java/org/apache/pluto/container/impl/JaxBDescriptorServiceImplTest.java?rev=823509&amp;r1=823508&amp;r2=823509&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container/src/test/java/org/apache/pluto/container/impl/JaxBDescriptorServiceImplTest.java
(original)
+++ portals/pluto/trunk/pluto-container/src/test/java/org/apache/pluto/container/impl/JaxBDescriptorServiceImplTest.java
Fri Oct  9 10:34:34 2009
@@ -20,15 +20,17 @@
 import java.io.IOException;
 import java.io.InputStream;
 
+import javax.xml.parsers.ParserConfigurationException;
+
 import junit.framework.Assert;
 import junit.framework.TestCase;
 
-import org.apache.pluto.container.impl.PortletAppDescriptorServiceImpl;
 import org.apache.pluto.container.om.portlet.PortletApplicationDefinition;
 import org.apache.pluto.container.om.portlet.PortletDefinition;
 import org.junit.After;
 import org.junit.Before;
 import org.junit.Test;
+import org.xml.sax.SAXException;
 
 /**
  * Testclass for testing jaxb xml 2 java binding (portlet.xml)
@@ -37,11 +39,13 @@
 public class JaxBDescriptorServiceImplTest extends TestCase{
 	
 	private StringBuffer xmlBegin286 = new StringBuffer();
+    private StringBuffer xmlBegin286NoNamespaceURI = new StringBuffer();
 	private StringBuffer portlet286 = new StringBuffer();
 	private StringBuffer attrs286 = new StringBuffer();
 	private StringBuffer xmlEnd = new StringBuffer();
 	
 	private StringBuffer xmlBegin168 = new StringBuffer();
+    private StringBuffer xmlBegin168NoNamespaceURI = new StringBuffer();
 	private StringBuffer portlet168 = new StringBuffer();
 	private StringBuffer attrs168 = new StringBuffer();
 
@@ -64,6 +68,9 @@
 				"xmlns:portlet=\"http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd\"\n" +
 				"xsi:schemaLocation=\"http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd\n" +
 				"http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd\"&gt;\n ");
+        xmlBegin286NoNamespaceURI.append("" +
+                           "&lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;\n" +
+                           "&lt;portlet-app id=\"id1\" version=\"2.0\"&gt;");
 		portlet286.append(""+
 				"&lt;portlet id=\"id2\"&gt;\n" +
 				"&lt;description xml:lang=\"de\"&gt;description&lt;/description&gt;\n" +
@@ -184,6 +191,9 @@
 				"xmlns:portlet=\"http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd\"\n" +
 				"xsi:schemaLocation=\"http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd\n" +
 				"http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd\"&gt;\n ");
+        xmlBegin168NoNamespaceURI.append("" +
+                           "&lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;\n" +
+                           "&lt;portlet-app id=\"id1\" version=\"1.0\"&gt;");
 		portlet168.append(""+
 				"&lt;portlet id=\"id2\"&gt;\n" +
 				"&lt;description xml:lang=\"de\"&gt;description&lt;/description&gt;\n" +
@@ -313,66 +323,109 @@
 			in = new ByteArrayInputStream(xml168.toString().getBytes());
 			PortletApplicationDefinition portletApp168 = jaxb.read("test", "/test", in);
 			
-			// test if portlet has the right params:
-			
-			// test jsr168 compliant portlets
-			PortletDefinition portlet168 = (PortletDefinition)portletApp168.getPortlets().get(0);
-			assertTrue(portlet168.getExpirationCache()==50);
-			assertEquals(portlet168.getPortletName(),"portlet168");
-			assertEquals(portlet168.getInitParams().get(0).getParamValue(),"value");
-			assertEquals(portlet168.getSecurityRoleRefs().get(0).getRoleLink(), "role-link");
-			assertEquals(portletApp168.getCustomPortletModes().get(0).getPortletMode(), "portlet-mode");
-			assertEquals(portletApp168.getCustomWindowStates().get(0).getWindowState(), "window-state");
-			assertEquals(portletApp168.getUserAttributes().get(0).getName(), "name" );
-			assertEquals(portletApp168.getSecurityConstraints().get(0).getPortletNames().get(0), "portlet-name");
-			assertEquals(portlet168.getExpirationCache(), 50);
-			// id (isn't supported yet)
-//			assertFalse(portletApp.getId().equals("id2"));
-//			assertTrue(portletApp.getId().equals("id1"));
-			
-			jaxb.write(portletApp168, System.out);
-			// portlet id
-			PortletDefinition portlet286 = (PortletDefinition)portletApp286.getPortlets().get(0);
-//			assertTrue(portlet1.getId().equals("id2"));
-			
-			// portlet class
-			assertTrue(portlet286.getPortletClass().equals("portlet-class"));
-			
-			// portlet info
-			// id isn't supported yet
-//			assertTrue(portlet1.getPortletInfo().getId().equals("info1"));
-			assertTrue(portlet286.getPortletInfo().getTitle().equals("title"));
-			
-			assertEquals("supports size should be 3", 3, portlet286.getSupports().size());
-			
-			assertEquals(portletApp286.getCustomPortletModes().get(0).getPortletMode(), "portlet-mode");
-			assertEquals(portletApp286.getCustomWindowStates().get(0).getWindowState(), "window-state");
-			assertEquals(portletApp286.getUserAttributes().get(0).getName(), "name" );
-			assertEquals(portletApp286.getSecurityConstraints().get(0).getPortletNames().get(0), "portlet-name");
-			assertEquals(portletApp286.getEventDefinitions().get(0).getValueType(), "java-class");
-//			assertEquals(portletApp286.getRender().get(0).getName(), "QName");
-			assertEquals(portletApp286.getFilters().get(0).getLifecycles().get(0), "lifecycle");
-			assertEquals(portletApp286.getFilterMappings().get(0).getPortletNames().get(0), "portlet-name");
-			assertEquals(portletApp286.getResourceBundle(), "resource-bundle");
-			assertEquals(portletApp286.getVersion(), "2.0");
-			
-			// test container runtime options
-			assertEquals(portletApp286.getContainerRuntimeOptions().size(),1);
-			assertEquals(portletApp286.getContainerRuntimeOptions().get(0).getName(),"Runtime-Option-Portlet-App");
-			assertEquals(portletApp286.getContainerRuntimeOptions().get(0).getValues().get(0),"false");
-			
-			assertEquals(portlet286.getContainerRuntimeOptions().size(),1);
-			assertEquals(portlet286.getContainerRuntimeOptions().get(0).getName(),"Runtime-Option");
-			assertEquals(portlet286.getContainerRuntimeOptions().get(0).getValues().get(0),"true");
-            assertEquals(portlet286.getExpirationCache(), 100);
-			
-            jaxb.write(portletApp286, System.out);
+			validatePortletApp168AndPortletApp286(portletApp168, portletApp286);
 			
 		} catch (IOException e) {
-			fail("exception was thrown");
+			fail("exception was thrown: " + e);
 		}
+		
 	}
 
+    /**
+     * Test method for {@link org.apache.pluto.descriptors.services.jaxb.JaxBDescriptorServiceImpl#read(java.net.URL)}
+     * with descriptors not having namespace.
+     * @throws ParserConfigurationException 
+     * @throws SAXException 
+     */
+    @Test
+    public void testReadNoNamespaceURI() throws IOException, ParserConfigurationException,
SAXException {
+        
+        try {
+            
+            StringBuffer xml286NoNamespaceURI = new StringBuffer()
+            .append(xmlBegin286NoNamespaceURI).append(portlet286)
+            .append(attrs286).append(xmlEnd);
+            
+            StringBuffer xml168NoNamespaceURI = new StringBuffer()
+            .append(xmlBegin168NoNamespaceURI).append(portlet168)
+            .append(attrs168).append(xmlEnd);
+            
+            InputStream in = new ByteArrayInputStream(xml286NoNamespaceURI.toString().getBytes());
+            
+            PortletApplicationDefinition portletApp286NoNamespaceURI = jaxb.read("test",
"/test", in);
+            
+            in = new ByteArrayInputStream(xml168NoNamespaceURI.toString().getBytes());
+            PortletApplicationDefinition portletApp168NoNamespaceURI = jaxb.read("test",
"/test", in);
+            
+            validatePortletApp168AndPortletApp286(portletApp168NoNamespaceURI, portletApp286NoNamespaceURI);
+            
+        } catch (IOException e) {
+            fail("exception was thrown: " + e);
+        }
+        
+    }
+    
+    /**
+     * Validates if portlet has the right params for {@link #testRead()} and {@link #testReadNoNamespaceURI()}.
+     * @param portletApp168
+     * @param portletApp286
+     * @throws IOException
+     */
+    private void validatePortletApp168AndPortletApp286(PortletApplicationDefinition portletApp168,
PortletApplicationDefinition portletApp286) throws IOException {
+        // test jsr168 compliant portlets
+        PortletDefinition portlet168 = (PortletDefinition)portletApp168.getPortlets().get(0);
+        assertTrue(portlet168.getExpirationCache()==50);
+        assertEquals(portlet168.getPortletName(),"portlet168");
+        assertEquals(portlet168.getInitParams().get(0).getParamValue(),"value");
+        assertEquals(portlet168.getSecurityRoleRefs().get(0).getRoleLink(), "role-link");
+        assertEquals(portletApp168.getCustomPortletModes().get(0).getPortletMode(), "portlet-mode");
+        assertEquals(portletApp168.getCustomWindowStates().get(0).getWindowState(), "window-state");
+        assertEquals(portletApp168.getUserAttributes().get(0).getName(), "name" );
+        assertEquals(portletApp168.getSecurityConstraints().get(0).getPortletNames().get(0),
"portlet-name");
+        assertEquals(portlet168.getExpirationCache(), 50);
+        // id (isn't supported yet)
+//      assertFalse(portletApp.getId().equals("id2"));
+//      assertTrue(portletApp.getId().equals("id1"));
+        
+        jaxb.write(portletApp168, System.out);
+        // portlet id
+        PortletDefinition portlet286 = (PortletDefinition)portletApp286.getPortlets().get(0);
+//      assertTrue(portlet1.getId().equals("id2"));
+        
+        // portlet class
+        assertTrue(portlet286.getPortletClass().equals("portlet-class"));
+        
+        // portlet info
+        // id isn't supported yet
+//      assertTrue(portlet1.getPortletInfo().getId().equals("info1"));
+        assertTrue(portlet286.getPortletInfo().getTitle().equals("title"));
+        
+        assertEquals("supports size should be 3", 3, portlet286.getSupports().size());
+        
+        assertEquals(portletApp286.getCustomPortletModes().get(0).getPortletMode(), "portlet-mode");
+        assertEquals(portletApp286.getCustomWindowStates().get(0).getWindowState(), "window-state");
+        assertEquals(portletApp286.getUserAttributes().get(0).getName(), "name" );
+        assertEquals(portletApp286.getSecurityConstraints().get(0).getPortletNames().get(0),
"portlet-name");
+        assertEquals(portletApp286.getEventDefinitions().get(0).getValueType(), "java-class");
+//      assertEquals(portletApp286.getRender().get(0).getName(), "QName");
+        assertEquals(portletApp286.getFilters().get(0).getLifecycles().get(0), "lifecycle");
+        assertEquals(portletApp286.getFilterMappings().get(0).getPortletNames().get(0), "portlet-name");
+        assertEquals(portletApp286.getResourceBundle(), "resource-bundle");
+        assertEquals(portletApp286.getVersion(), "2.0");
+        
+        // test container runtime options
+        assertEquals(portletApp286.getContainerRuntimeOptions().size(),1);
+        assertEquals(portletApp286.getContainerRuntimeOptions().get(0).getName(),"Runtime-Option-Portlet-App");
+        assertEquals(portletApp286.getContainerRuntimeOptions().get(0).getValues().get(0),"false");
+        
+        assertEquals(portlet286.getContainerRuntimeOptions().size(),1);
+        assertEquals(portlet286.getContainerRuntimeOptions().get(0).getName(),"Runtime-Option");
+        assertEquals(portlet286.getContainerRuntimeOptions().get(0).getValues().get(0),"true");
+        assertEquals(portlet286.getExpirationCache(), 100);
+        
+        jaxb.write(portletApp286, System.out);
+    }
+
 	/**
 	 * Test method for {@link org.apache.pluto.descriptors.services.jaxb.JaxBDescriptorServiceImpl#writePortletApp(com.sun.java.xml.ns.portlet.portlet_app_2_0_xsd.PortletAppType,
java.io.OutputStream)}.
 	 */
@@ -411,5 +464,5 @@
         PortletDefinition pd = (PortletDefinition) portletDD.getPortlets().get( 0 );
         assertEquals( pd.getExpirationCache(), 0 );
     }
-
+    
 }




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r818332 - /portals/pluto/branches/pluto-1.1.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java</title>
<author><name>djencks@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200909.mbox/%3c20090924004931.8EB7723888CF@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090924004931-8EB7723888CF@eris-apache-org%3e</id>
<updated>2009-09-24T00:49:31Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: djencks
Date: Thu Sep 24 00:49:31 2009
New Revision: 818332

URL: http://svn.apache.org/viewvc?rev=818332&amp;view=rev
Log:
PLUTO-579 Um, StringBuilder not available in jdk 1.4

Modified:
    portals/pluto/branches/pluto-1.1.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java

Modified: portals/pluto/branches/pluto-1.1.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java
URL: http://svn.apache.org/viewvc/portals/pluto/branches/pluto-1.1.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java?rev=818332&amp;r1=818331&amp;r2=818332&amp;view=diff
==============================================================================
--- portals/pluto/branches/pluto-1.1.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java
(original)
+++ portals/pluto/branches/pluto-1.1.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java
Thu Sep 24 00:49:31 2009
@@ -91,8 +91,8 @@
         ENCODING_MAP.put(ESCAPE_STRING, ESCAPE_STRING + ESCAPE_STRING);
         DECODING_MAP.put(ESCAPE_STRING + ESCAPE_STRING , ESCAPE_STRING);
 
-        StringBuilder encodingPatternBuilder = new StringBuilder();
-        StringBuilder decodingPatternBuilder = new StringBuilder();
+        StringBuffer encodingPatternBuilder = new StringBuffer();
+        StringBuffer decodingPatternBuilder = new StringBuffer();
         encodingPatternBuilder.append(ESCAPE_STRING);
         decodingPatternBuilder.append(ESCAPE_STRING + ESCAPE_STRING);
 




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r818328 - /portals/pluto/branches/pluto-1.1.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java</title>
<author><name>djencks@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200909.mbox/%3c20090924004325.CD909238888D@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090924004325-CD909238888D@eris-apache-org%3e</id>
<updated>2009-09-24T00:43:25Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: djencks
Date: Thu Sep 24 00:43:25 2009
New Revision: 818328

URL: http://svn.apache.org/viewvc?rev=818328&amp;view=rev
Log:
PLUTO-579 Escape more characters and use a faster encoding/decoding method in PortalURLParserImpl.
 Patch from Ivan, modified for jdk 1.4

Modified:
    portals/pluto/branches/pluto-1.1.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java

Modified: portals/pluto/branches/pluto-1.1.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java
URL: http://svn.apache.org/viewvc/portals/pluto/branches/pluto-1.1.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java?rev=818328&amp;r1=818327&amp;r2=818328&amp;view=diff
==============================================================================
--- portals/pluto/branches/pluto-1.1.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java
(original)
+++ portals/pluto/branches/pluto-1.1.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java
Thu Sep 24 00:43:25 2009
@@ -18,20 +18,21 @@
 
 import java.io.UnsupportedEncodingException;
 import java.net.URLEncoder;
+import java.util.HashMap;
 import java.util.Iterator;
 import java.util.Map;
 import java.util.StringTokenizer;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
 
 import javax.portlet.PortletMode;
 import javax.portlet.WindowState;
 import javax.servlet.http.HttpServletRequest;
-
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 import org.apache.pluto.driver.url.PortalURL;
 import org.apache.pluto.driver.url.PortalURLParameter;
 import org.apache.pluto.driver.url.PortalURLParser;
-import org.apache.pluto.util.StringUtils;
 
 /**
  * @version 1.0
@@ -72,7 +73,41 @@
             new String[] { "?",  "0xa" },
             new String[] { "\\", "0xb" },
             new String[] { "%",  "0xc" },
+            new String[] { ";",  "0xd" },
+            new String[] { "0x0",  "0xe" }
     };
+    
+    private static Map ENCODING_MAP = new HashMap();
+    
+    private static Map DECODING_MAP = new HashMap();
+
+    private static final Pattern ENCODING_PATTERN;
+    
+    private static final Pattern DECODING_PATTERN;
+    
+    private static String ESCAPE_STRING = "0xz";
+
+    static {        
+        ENCODING_MAP.put(ESCAPE_STRING, ESCAPE_STRING + ESCAPE_STRING);
+        DECODING_MAP.put(ESCAPE_STRING + ESCAPE_STRING , ESCAPE_STRING);
+
+        StringBuilder encodingPatternBuilder = new StringBuilder();
+        StringBuilder decodingPatternBuilder = new StringBuilder();
+        encodingPatternBuilder.append(ESCAPE_STRING);
+        decodingPatternBuilder.append(ESCAPE_STRING + ESCAPE_STRING);
+
+        for (int i = 0; i &lt; ENCODINGS.length; i++) {
+            ENCODING_MAP.put(ENCODINGS[i][0], ENCODINGS[i][1]);            
+            ENCODING_MAP.put(ENCODINGS[i][1], ESCAPE_STRING + ENCODINGS[i][1]);
+            DECODING_MAP.put(ENCODINGS[i][1], Matcher.quoteReplacement(ENCODINGS[i][0]));
+            DECODING_MAP.put(ESCAPE_STRING + ENCODINGS[i][1], ENCODINGS[i][1]);
+
+            encodingPatternBuilder.append("|" + Pattern.quote(ENCODINGS[i][0]) + "|" + ENCODINGS[i][1]);
+            decodingPatternBuilder.append("|(" + ESCAPE_STRING + ")?" + ENCODINGS[i][1]);
+        }
+        ENCODING_PATTERN = Pattern.compile(encodingPatternBuilder.toString());        
+        DECODING_PATTERN = Pattern.compile(decodingPatternBuilder.toString());       
+    }
 
     // Constructor -------------------------------------------------------------
 
@@ -195,7 +230,7 @@
 
         // Start the pathInfo with the path to the render URL (page).
         if (portalURL.getRenderPath() != null) {
-        	buffer.append("/").append(portalURL.getRenderPath());
+            buffer.append(portalURL.getRenderPath().startsWith("/") ? "" : "/").append(portalURL.getRenderPath());
         }
 
         // Append the action window definition, if it exists.
@@ -306,12 +341,12 @@
     private String encodeMultiValues(String[] values) {
     	StringBuffer buffer = new StringBuffer();
         for (int i = 0; i &lt; values.length; i++) {
-        	buffer.append(values[i] != null ? values[i] : "");
+        	buffer.append(values[i] != null ? encodeCharacters(values[i]) : "");
             if (i + 1 &lt; values.length) {
             	buffer.append(VALUE_DELIM);
             }
         }
-        return encodeCharacters(buffer.toString());
+        return buffer.toString();
     }
 
     /**
@@ -320,12 +355,13 @@
      * @return the encoded string.
      */
     private String encodeCharacters(String string) {
-        for (int i = 0; i &lt; ENCODINGS.length; i++) {
-            string = StringUtils.replace(string,
-                                         ENCODINGS[i][0],
-                                         ENCODINGS[i][1]);
+        Matcher matcher = ENCODING_PATTERN.matcher(string);
+        StringBuffer buffer = new StringBuffer();
+        while (matcher.find()) {
+            matcher.appendReplacement(buffer, (String)ENCODING_MAP.get(matcher.group()));
         }
-        return string;
+        matcher.appendTail(buffer);
+        return buffer.toString();
     }
 
 
@@ -380,12 +416,13 @@
 
         // Decode special characters in window ID and parameter value.
         windowId = decodeCharacters(windowId);
-        if (value != null) {
-        	value = decodeCharacters(value);
-        }
-
+        
         // Split multiple values into a value array.
         String[] paramValues = value.split(VALUE_DELIM);
+        
+        for(int i=0;i&lt;paramValues.length;i++) {
+            paramValues[i] = decodeCharacters(paramValues[i]);
+        }
 
         // Construct portal URL parameter and return.
         return new PortalURLParameter(windowId, paramName, paramValues);
@@ -396,13 +433,14 @@
      * @param string  the string value to decode.
      * @return the decoded string.
      */
-    private String decodeCharacters(String string) {
-        for (int i = 0; i &lt; ENCODINGS.length; i++) {
-        	string = StringUtils.replace(string,
-        	                             ENCODINGS[i][1],
-        	                             ENCODINGS[i][0]);
+    private String decodeCharacters(String string) {        
+        Matcher matcher = DECODING_PATTERN.matcher(string);
+        StringBuffer buffer = new StringBuffer();
+        while (matcher.find()) {
+            matcher.appendReplacement(buffer, (String)DECODING_MAP.get(matcher.group()));
         }
-        return string;
+        matcher.appendTail(buffer);
+        return buffer.toString();       
     }
 
 }




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r776278 - in /portals/pluto/trunk: ./ maven-pluto-plugin/ pluto-ant-tasks/ pluto-container-api/ pluto-container-driver-api/ pluto-container/ pluto-portal-driver-impl/ pluto-portal-driver/ pluto-portal/ pluto-taglib/ pluto-testsuite/ pluto-u...</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090519113651.3B5B22388993@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090519113651-3B5B22388993@eris-apache-org%3e</id>
<updated>2009-05-19T11:36:50Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Tue May 19 11:36:50 2009
New Revision: 776278

URL: http://svn.apache.org/viewvc?rev=776278&amp;view=rev
Log:
[maven-release-plugin] prepare for next development iteration

Modified:
    portals/pluto/trunk/maven-pluto-plugin/pom.xml
    portals/pluto/trunk/pluto-ant-tasks/pom.xml
    portals/pluto/trunk/pluto-container-api/pom.xml
    portals/pluto/trunk/pluto-container-driver-api/pom.xml
    portals/pluto/trunk/pluto-container/pom.xml
    portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
    portals/pluto/trunk/pluto-portal-driver/pom.xml
    portals/pluto/trunk/pluto-portal/pom.xml
    portals/pluto/trunk/pluto-taglib/pom.xml
    portals/pluto/trunk/pluto-testsuite/pom.xml
    portals/pluto/trunk/pluto-util/pom.xml
    portals/pluto/trunk/pom.xml

Modified: portals/pluto/trunk/maven-pluto-plugin/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/maven-pluto-plugin/pom.xml?rev=776278&amp;r1=776277&amp;r2=776278&amp;view=diff
==============================================================================
--- portals/pluto/trunk/maven-pluto-plugin/pom.xml (original)
+++ portals/pluto/trunk/maven-pluto-plugin/pom.xml Tue May 19 11:36:50 2009
@@ -23,7 +23,7 @@
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0&lt;/version&gt;
+        &lt;version&gt;2.0.1-SNAPSHOT&lt;/version&gt;
     &lt;/parent&gt;
   
     &lt;artifactId&gt;maven-pluto-plugin&lt;/artifactId&gt; 

Modified: portals/pluto/trunk/pluto-ant-tasks/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-ant-tasks/pom.xml?rev=776278&amp;r1=776277&amp;r2=776278&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-ant-tasks/pom.xml (original)
+++ portals/pluto/trunk/pluto-ant-tasks/pom.xml Tue May 19 11:36:50 2009
@@ -23,7 +23,7 @@
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0&lt;/version&gt;
+        &lt;version&gt;2.0.1-SNAPSHOT&lt;/version&gt;
     &lt;/parent&gt;
   
     &lt;artifactId&gt;pluto-ant-tasks&lt;/artifactId&gt; 

Modified: portals/pluto/trunk/pluto-container-api/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container-api/pom.xml?rev=776278&amp;r1=776277&amp;r2=776278&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container-api/pom.xml (original)
+++ portals/pluto/trunk/pluto-container-api/pom.xml Tue May 19 11:36:50 2009
@@ -23,7 +23,7 @@
 	&lt;parent&gt;
 		&lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
 		&lt;artifactId&gt;pluto&lt;/artifactId&gt;
-		&lt;version&gt;2.0.0&lt;/version&gt;
+		&lt;version&gt;2.0.1-SNAPSHOT&lt;/version&gt;
 	&lt;/parent&gt;
 
 	&lt;artifactId&gt;pluto-container-api&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-container-driver-api/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container-driver-api/pom.xml?rev=776278&amp;r1=776277&amp;r2=776278&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container-driver-api/pom.xml (original)
+++ portals/pluto/trunk/pluto-container-driver-api/pom.xml Tue May 19 11:36:50 2009
@@ -23,7 +23,7 @@
 	&lt;parent&gt;
 		&lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
 		&lt;artifactId&gt;pluto&lt;/artifactId&gt;
-		&lt;version&gt;2.0.0&lt;/version&gt;
+		&lt;version&gt;2.0.1-SNAPSHOT&lt;/version&gt;
 	&lt;/parent&gt;
 
 	&lt;artifactId&gt;pluto-container-driver-api&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-container/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container/pom.xml?rev=776278&amp;r1=776277&amp;r2=776278&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container/pom.xml (original)
+++ portals/pluto/trunk/pluto-container/pom.xml Tue May 19 11:36:50 2009
@@ -23,7 +23,7 @@
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0&lt;/version&gt;
+        &lt;version&gt;2.0.1-SNAPSHOT&lt;/version&gt;
     &lt;/parent&gt;
   
     &lt;artifactId&gt;pluto-container&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver-impl/pom.xml?rev=776278&amp;r1=776277&amp;r2=776278&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver-impl/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver-impl/pom.xml Tue May 19 11:36:50 2009
@@ -23,7 +23,7 @@
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0&lt;/version&gt;
+        &lt;version&gt;2.0.1-SNAPSHOT&lt;/version&gt;
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-portal-driver-impl&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-portal-driver/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver/pom.xml?rev=776278&amp;r1=776277&amp;r2=776278&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver/pom.xml Tue May 19 11:36:50 2009
@@ -23,7 +23,7 @@
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0&lt;/version&gt;
+        &lt;version&gt;2.0.1-SNAPSHOT&lt;/version&gt;
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-portal-driver&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-portal/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/pom.xml?rev=776278&amp;r1=776277&amp;r2=776278&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal/pom.xml Tue May 19 11:36:50 2009
@@ -23,7 +23,7 @@
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0&lt;/version&gt;
+        &lt;version&gt;2.0.1-SNAPSHOT&lt;/version&gt;
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-portal&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-taglib/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-taglib/pom.xml?rev=776278&amp;r1=776277&amp;r2=776278&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-taglib/pom.xml (original)
+++ portals/pluto/trunk/pluto-taglib/pom.xml Tue May 19 11:36:50 2009
@@ -23,7 +23,7 @@
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0&lt;/version&gt;
+        &lt;version&gt;2.0.1-SNAPSHOT&lt;/version&gt;
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-taglib&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-testsuite/pom.xml?rev=776278&amp;r1=776277&amp;r2=776278&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-testsuite/pom.xml (original)
+++ portals/pluto/trunk/pluto-testsuite/pom.xml Tue May 19 11:36:50 2009
@@ -23,7 +23,7 @@
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0&lt;/version&gt;
+        &lt;version&gt;2.0.1-SNAPSHOT&lt;/version&gt;
     &lt;/parent&gt;
     
     &lt;artifactId&gt;pluto-testsuite&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-util/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-util/pom.xml?rev=776278&amp;r1=776277&amp;r2=776278&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-util/pom.xml (original)
+++ portals/pluto/trunk/pluto-util/pom.xml Tue May 19 11:36:50 2009
@@ -22,7 +22,7 @@
     &lt;parent&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-        &lt;version&gt;2.0.0&lt;/version&gt;
+        &lt;version&gt;2.0.1-SNAPSHOT&lt;/version&gt;
     &lt;/parent&gt;
     &lt;artifactId&gt;pluto-util&lt;/artifactId&gt;
     &lt;name&gt;Apache Pluto Utilities&lt;/name&gt;

Modified: portals/pluto/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pom.xml?rev=776278&amp;r1=776277&amp;r2=776278&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pom.xml (original)
+++ portals/pluto/trunk/pom.xml Tue May 19 11:36:50 2009
@@ -41,7 +41,7 @@
     in testsuite module (src/main/webapp/WEB-INF/classes)
     5. pluto.version in Ant build file dist-build.xml.
      --&gt;
-    &lt;version&gt;2.0.0&lt;/version&gt;
+    &lt;version&gt;2.0.1-SNAPSHOT&lt;/version&gt;
     &lt;!-- Due to a bug in maven 2.0, the description must not contain any line breaks or
tabs. --&gt;
     &lt;description&gt;Apache Pluto is the Reference Implementation of the Java Portlet Specification.&lt;/description&gt;
     &lt;url&gt;http://portals.apache.org/pluto&lt;/url&gt;
@@ -219,9 +219,9 @@
     &lt;/contributors&gt;
 
     &lt;scm&gt;
-        &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/portals/pluto/tags/pluto-2.0.0&lt;/connection&gt;
-        &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/portals/pluto/tags/pluto-2.0.0&lt;/developerConnection&gt;
-        &lt;url&gt;http://svn.apache.org/viewcvs.cgi/portals/pluto/tags/pluto-2.0.0&lt;/url&gt;
+        &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/portals/pluto/trunk&lt;/connection&gt;
+        &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/portals/pluto/trunk&lt;/developerConnection&gt;
+        &lt;url&gt;http://svn.apache.org/viewcvs.cgi/portals/pluto/trunk&lt;/url&gt;
     &lt;/scm&gt;
 
     &lt;!-- Dependency Version Properties ======================================= --&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r776277 - /portals/pluto/tags/pluto-2.0.0/</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090519113638.7E26D2388981@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090519113638-7E26D2388981@eris-apache-org%3e</id>
<updated>2009-05-19T11:36:38Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Tue May 19 11:36:38 2009
New Revision: 776277

URL: http://svn.apache.org/viewvc?rev=776277&amp;view=rev
Log:
[maven-scm] copy for tag pluto-2.0.0

Added:
    portals/pluto/tags/pluto-2.0.0/
      - copied from r776276, portals/pluto/trunk/



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r776276 - in /portals/pluto/trunk: ./ maven-pluto-plugin/ pluto-ant-tasks/ pluto-container-api/ pluto-container-driver-api/ pluto-container/ pluto-portal-driver-impl/ pluto-portal-driver/ pluto-portal/ pluto-taglib/ pluto-testsuite/ pluto-u...</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090519113628.6FBD223888E5@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090519113628-6FBD223888E5@eris-apache-org%3e</id>
<updated>2009-05-19T11:36:27Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Tue May 19 11:36:27 2009
New Revision: 776276

URL: http://svn.apache.org/viewvc?rev=776276&amp;view=rev
Log:
[maven-release-plugin] prepare release pluto-2.0.0

Modified:
    portals/pluto/trunk/maven-pluto-plugin/pom.xml
    portals/pluto/trunk/pluto-ant-tasks/pom.xml
    portals/pluto/trunk/pluto-container-api/pom.xml
    portals/pluto/trunk/pluto-container-driver-api/pom.xml
    portals/pluto/trunk/pluto-container/pom.xml
    portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
    portals/pluto/trunk/pluto-portal-driver/pom.xml
    portals/pluto/trunk/pluto-portal/pom.xml
    portals/pluto/trunk/pluto-taglib/pom.xml
    portals/pluto/trunk/pluto-testsuite/pom.xml
    portals/pluto/trunk/pluto-util/pom.xml
    portals/pluto/trunk/pom.xml

Modified: portals/pluto/trunk/maven-pluto-plugin/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/maven-pluto-plugin/pom.xml?rev=776276&amp;r1=776275&amp;r2=776276&amp;view=diff
==============================================================================
--- portals/pluto/trunk/maven-pluto-plugin/pom.xml (original)
+++ portals/pluto/trunk/maven-pluto-plugin/pom.xml Tue May 19 11:36:27 2009
@@ -17,15 +17,13 @@
   specific language governing permissions and limitations
   under the License.
 --&gt;
-&lt;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"&gt;
+&lt;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"&gt;
   
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+        &lt;version&gt;2.0.0&lt;/version&gt;
     &lt;/parent&gt;
   
     &lt;artifactId&gt;maven-pluto-plugin&lt;/artifactId&gt; 

Modified: portals/pluto/trunk/pluto-ant-tasks/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-ant-tasks/pom.xml?rev=776276&amp;r1=776275&amp;r2=776276&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-ant-tasks/pom.xml (original)
+++ portals/pluto/trunk/pluto-ant-tasks/pom.xml Tue May 19 11:36:27 2009
@@ -17,15 +17,13 @@
   specific language governing permissions and limitations
   under the License.
 --&gt;
-&lt;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"&gt;
+&lt;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"&gt;
   
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+        &lt;version&gt;2.0.0&lt;/version&gt;
     &lt;/parent&gt;
   
     &lt;artifactId&gt;pluto-ant-tasks&lt;/artifactId&gt; 

Modified: portals/pluto/trunk/pluto-container-api/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container-api/pom.xml?rev=776276&amp;r1=776275&amp;r2=776276&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container-api/pom.xml (original)
+++ portals/pluto/trunk/pluto-container-api/pom.xml Tue May 19 11:36:27 2009
@@ -17,15 +17,13 @@
   specific language governing permissions and limitations
   under the License.
 --&gt;
-&lt;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"&gt;
+&lt;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"&gt;
 	
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
 	&lt;parent&gt;
 		&lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
 		&lt;artifactId&gt;pluto&lt;/artifactId&gt;
-		&lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+		&lt;version&gt;2.0.0&lt;/version&gt;
 	&lt;/parent&gt;
 
 	&lt;artifactId&gt;pluto-container-api&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-container-driver-api/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container-driver-api/pom.xml?rev=776276&amp;r1=776275&amp;r2=776276&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container-driver-api/pom.xml (original)
+++ portals/pluto/trunk/pluto-container-driver-api/pom.xml Tue May 19 11:36:27 2009
@@ -17,15 +17,13 @@
   specific language governing permissions and limitations
   under the License.
 --&gt;
-&lt;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"&gt;
+&lt;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"&gt;
 	
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
 	&lt;parent&gt;
 		&lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
 		&lt;artifactId&gt;pluto&lt;/artifactId&gt;
-		&lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+		&lt;version&gt;2.0.0&lt;/version&gt;
 	&lt;/parent&gt;
 
 	&lt;artifactId&gt;pluto-container-driver-api&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-container/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container/pom.xml?rev=776276&amp;r1=776275&amp;r2=776276&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container/pom.xml (original)
+++ portals/pluto/trunk/pluto-container/pom.xml Tue May 19 11:36:27 2009
@@ -17,15 +17,13 @@
   specific language governing permissions and limitations
   under the License.
 --&gt;
-&lt;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"&gt;
+&lt;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"&gt;
   
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+        &lt;version&gt;2.0.0&lt;/version&gt;
     &lt;/parent&gt;
   
     &lt;artifactId&gt;pluto-container&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver-impl/pom.xml?rev=776276&amp;r1=776275&amp;r2=776276&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver-impl/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver-impl/pom.xml Tue May 19 11:36:27 2009
@@ -17,15 +17,13 @@
   specific language governing permissions and limitations
   under the License.
 --&gt;
-&lt;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"&gt;
+&lt;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"&gt;
 
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+        &lt;version&gt;2.0.0&lt;/version&gt;
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-portal-driver-impl&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-portal-driver/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver/pom.xml?rev=776276&amp;r1=776275&amp;r2=776276&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver/pom.xml Tue May 19 11:36:27 2009
@@ -17,15 +17,13 @@
   specific language governing permissions and limitations
   under the License.
 --&gt;
-&lt;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"&gt;
+&lt;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"&gt;
 
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+        &lt;version&gt;2.0.0&lt;/version&gt;
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-portal-driver&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-portal/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/pom.xml?rev=776276&amp;r1=776275&amp;r2=776276&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal/pom.xml Tue May 19 11:36:27 2009
@@ -17,15 +17,13 @@
   specific language governing permissions and limitations
   under the License.
 --&gt;
-&lt;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"&gt;
+&lt;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"&gt;
 
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+        &lt;version&gt;2.0.0&lt;/version&gt;
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-portal&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-taglib/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-taglib/pom.xml?rev=776276&amp;r1=776275&amp;r2=776276&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-taglib/pom.xml (original)
+++ portals/pluto/trunk/pluto-taglib/pom.xml Tue May 19 11:36:27 2009
@@ -17,15 +17,13 @@
   specific language governing permissions and limitations
   under the License.
 --&gt;
-&lt;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"&gt;
+&lt;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"&gt;
 
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+        &lt;version&gt;2.0.0&lt;/version&gt;
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-taglib&lt;/artifactId&gt;

Modified: portals/pluto/trunk/pluto-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-testsuite/pom.xml?rev=776276&amp;r1=776275&amp;r2=776276&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-testsuite/pom.xml (original)
+++ portals/pluto/trunk/pluto-testsuite/pom.xml Tue May 19 11:36:27 2009
@@ -17,15 +17,13 @@
   specific language governing permissions and limitations
   under the License.
 --&gt;
-&lt;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"&gt;
+&lt;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"&gt;
   
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+        &lt;version&gt;2.0.0&lt;/version&gt;
     &lt;/parent&gt;
     
     &lt;artifactId&gt;pluto-testsuite&lt;/artifactId&gt;
@@ -166,9 +164,9 @@
                                       on the command line when invoking maven:
                                       mvn -Ddeploy.dir=/pluto-1.1.4/webapps integration-test
                                     --&gt;
-                                        &lt;property environment="env"/&gt;
-                                        &lt;property name="deploy.dir" value="${env.PORTLET_DEPLOY_DIR}"/&gt;
-                                        &lt;copy file="target/${pom.build.finalName}.war"
tofile="${deploy.dir}/testsuite.war"/&gt;
+                                        &lt;property environment="env" /&gt;
+                                        &lt;property name="deploy.dir" value="${env.PORTLET_DEPLOY_DIR}"
/&gt;
+                                        &lt;copy file="target/${pom.build.finalName}.war"
tofile="${deploy.dir}/testsuite.war" /&gt;
                                     &lt;/tasks&gt;
                                 &lt;/configuration&gt;
                                 &lt;goals&gt;
@@ -203,9 +201,9 @@
                                       on the command line when invoking maven:
                                       mvn -Ddeploy.dir=/pluto-1.1.4/webapps integration-test
                                     --&gt;
-                                        &lt;property environment="env"/&gt;
-                                        &lt;property name="deploy.dir" value="${env.PORTLET_DEPLOY_DIR}"/&gt;
-                                        &lt;copy file="target/${pom.build.finalName}.war"
tofile="${deploy.dir}/testsuite.war"/&gt;
+                                        &lt;property environment="env" /&gt;
+                                        &lt;property name="deploy.dir" value="${env.PORTLET_DEPLOY_DIR}"
/&gt;
+                                        &lt;copy file="target/${pom.build.finalName}.war"
tofile="${deploy.dir}/testsuite.war" /&gt;
                                     &lt;/tasks&gt;
                                 &lt;/configuration&gt;
                                 &lt;goals&gt;

Modified: portals/pluto/trunk/pluto-util/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-util/pom.xml?rev=776276&amp;r1=776275&amp;r2=776276&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-util/pom.xml (original)
+++ portals/pluto/trunk/pluto-util/pom.xml Tue May 19 11:36:27 2009
@@ -22,7 +22,7 @@
     &lt;parent&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+        &lt;version&gt;2.0.0&lt;/version&gt;
     &lt;/parent&gt;
     &lt;artifactId&gt;pluto-util&lt;/artifactId&gt;
     &lt;name&gt;Apache Pluto Utilities&lt;/name&gt;

Modified: portals/pluto/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pom.xml?rev=776276&amp;r1=776275&amp;r2=776276&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pom.xml (original)
+++ portals/pluto/trunk/pom.xml Tue May 19 11:36:27 2009
@@ -41,7 +41,7 @@
     in testsuite module (src/main/webapp/WEB-INF/classes)
     5. pluto.version in Ant build file dist-build.xml.
      --&gt;
-    &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+    &lt;version&gt;2.0.0&lt;/version&gt;
     &lt;!-- Due to a bug in maven 2.0, the description must not contain any line breaks or
tabs. --&gt;
     &lt;description&gt;Apache Pluto is the Reference Implementation of the Java Portlet Specification.&lt;/description&gt;
     &lt;url&gt;http://portals.apache.org/pluto&lt;/url&gt;
@@ -219,9 +219,9 @@
     &lt;/contributors&gt;
 
     &lt;scm&gt;
-        &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/portals/pluto/trunk&lt;/connection&gt;
-        &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/portals/pluto/trunk&lt;/developerConnection&gt;
-        &lt;url&gt;http://svn.apache.org/viewcvs.cgi/portals/pluto/trunk&lt;/url&gt;
+        &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/portals/pluto/tags/pluto-2.0.0&lt;/connection&gt;
+        &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/portals/pluto/tags/pluto-2.0.0&lt;/developerConnection&gt;
+        &lt;url&gt;http://svn.apache.org/viewcvs.cgi/portals/pluto/tags/pluto-2.0.0&lt;/url&gt;
     &lt;/scm&gt;
 
     &lt;!-- Dependency Version Properties ======================================= --&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r776273 - in /portals/pluto/trunk: pom.xml src/ src/main/ src/main/assembly/ src/main/assembly/project-src.xml</title>
<author><name>ate@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090519111807.D69352388866@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090519111807-D69352388866@eris-apache-org%3e</id>
<updated>2009-05-19T11:18:07Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: ate
Date: Tue May 19 11:18:07 2009
New Revision: 776273

URL: http://svn.apache.org/viewvc?rev=776273&amp;view=rev
Log:
Temporary fix for http://jira.codehaus.org/browse/MASSEMBLY-409 by using a custom assembly
descriptor.
This turned out to be more difficult than expected because the portals-pom-1.2 already configures
the "project" predefined assemby and the maven-assembly-plugin
always merges descriptor configurations :(
"Fixed" by configuring a "dummy-does-not-exist" predefined descriptor (which then does override
the "project") *and* configuring ignoreMissingDescriptor=true
Note: this still needs to be tested with mvn release:prepare -DdryRun=true, but to be able
to do so this change needs to be committed first.
 

Added:
    portals/pluto/trunk/src/
    portals/pluto/trunk/src/main/
    portals/pluto/trunk/src/main/assembly/
    portals/pluto/trunk/src/main/assembly/project-src.xml   (with props)
Modified:
    portals/pluto/trunk/pom.xml

Modified: portals/pluto/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pom.xml?rev=776273&amp;r1=776272&amp;r2=776273&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pom.xml (original)
+++ portals/pluto/trunk/pom.xml Tue May 19 11:18:07 2009
@@ -525,8 +525,24 @@
             &lt;build&gt;
                 &lt;plugins&gt;
                     &lt;plugin&gt;
-                    &lt;!-- only include this in top level project poms --&gt;
+                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
                         &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
+                        &lt;configuration&gt;
+                            &lt;!--  "hack" to make it possible to override portals-pom-1.2
configuration using
+                                  descriptorRef "project" which (with the current version
of the plugin
+                                  doesn't produce what we need.
+                                  This "hack" also requires setting ignoreMissingDescriptor=true
(below)
+                                  See also: http://jira.codehaus.org/browse/MASSEMBLY-409
+                            --&gt;
+                            &lt;descriptorRefs&gt;
+                                &lt;descriptorRef&gt;dummy-does-not-exist&lt;/descriptorRef&gt;
+                            &lt;/descriptorRefs&gt;                            
+                            &lt;ignoreMissingDescriptor&gt;true&lt;/ignoreMissingDescriptor&gt;
+                            &lt;!-- our custom assembly descriptor producing -src archives
and excludes velocity.log --&gt;
+                            &lt;descriptors&gt;
+                                &lt;descriptor&gt;src/main/assembly/project-src.xml&lt;/descriptor&gt;
+                            &lt;/descriptors&gt;
+                        &lt;/configuration&gt;
                     &lt;/plugin&gt;
                 &lt;/plugins&gt;
             &lt;/build&gt;

Added: portals/pluto/trunk/src/main/assembly/project-src.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/src/main/assembly/project-src.xml?rev=776273&amp;view=auto
==============================================================================
--- portals/pluto/trunk/src/main/assembly/project-src.xml (added)
+++ portals/pluto/trunk/src/main/assembly/project-src.xml Tue May 19 11:18:07 2009
@@ -0,0 +1,38 @@
+&lt;?xml version='1.0' encoding='UTF-8'?&gt;
+&lt;!--
+  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.
+--&gt;
+&lt;assembly&gt;
+  &lt;id&gt;src&lt;/id&gt;
+  &lt;formats&gt;
+    &lt;format&gt;tar.gz&lt;/format&gt;
+    &lt;format&gt;tar.bz2&lt;/format&gt;
+    &lt;format&gt;zip&lt;/format&gt;
+  &lt;/formats&gt;
+  &lt;fileSets&gt;
+    &lt;fileSet&gt;
+      &lt;directory&gt;.&lt;/directory&gt;
+      &lt;outputDirectory&gt;&lt;/outputDirectory&gt;
+      &lt;useDefaultExcludes&gt;true&lt;/useDefaultExcludes&gt;
+      &lt;excludes&gt;
+        &lt;exclude&gt;**/target/**&lt;/exclude&gt;
+        &lt;exclude&gt;velocity.log&lt;/exclude&gt;
+      &lt;/excludes&gt;
+    &lt;/fileSet&gt;
+  &lt;/fileSets&gt;
+&lt;/assembly&gt;

Propchange: portals/pluto/trunk/src/main/assembly/project-src.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/pluto/trunk/src/main/assembly/project-src.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Propchange: portals/pluto/trunk/src/main/assembly/project-src.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r776248 - /portals/pluto/trunk/pom.xml</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090519093102.C873E2388866@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090519093102-C873E2388866@eris-apache-org%3e</id>
<updated>2009-05-19T09:31:02Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Tue May 19 09:31:01 2009
New Revision: 776248

URL: http://svn.apache.org/viewvc?rev=776248&amp;view=rev
Log:
Add missing assembly configuration.

Modified:
    portals/pluto/trunk/pom.xml

Modified: portals/pluto/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pom.xml?rev=776248&amp;r1=776247&amp;r2=776248&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pom.xml (original)
+++ portals/pluto/trunk/pom.xml Tue May 19 09:31:01 2009
@@ -518,4 +518,18 @@
         &lt;module&gt;maven-pluto-plugin&lt;/module&gt;
         &lt;module&gt;pluto-ant-tasks&lt;/module&gt;
     &lt;/modules&gt;
-&lt;/project&gt;
+
+    &lt;profiles&gt;
+        &lt;profile&gt;
+            &lt;id&gt;apache-release&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                    &lt;!-- only include this in top level project poms --&gt;
+                        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+    &lt;/profiles&gt; 
+    &lt;/project&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r776131 - in /portals/pluto/trunk: pluto-portal/pom.xml pluto-testsuite/pom.xml</title>
<author><name>ate@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518231525.0424B2388898@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518231525-0424B2388898@eris-apache-org%3e</id>
<updated>2009-05-18T23:15:24Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: ate
Date: Mon May 18 23:15:24 2009
New Revision: 776131

URL: http://svn.apache.org/viewvc?rev=776131&amp;view=rev
Log:
Adding rat exclusions for third party LICENSE files

Modified:
    portals/pluto/trunk/pluto-portal/pom.xml
    portals/pluto/trunk/pluto-testsuite/pom.xml

Modified: portals/pluto/trunk/pluto-portal/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/pom.xml?rev=776131&amp;r1=776130&amp;r2=776131&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal/pom.xml Mon May 18 23:15:24 2009
@@ -187,5 +187,22 @@
                 &lt;/plugins&gt;
             &lt;/build&gt;
         &lt;/profile&gt;
+        &lt;profile&gt;
+            &lt;id&gt;rat&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
+                        &lt;artifactId&gt;rat-maven-plugin&lt;/artifactId&gt;           

+                        &lt;configuration&gt;
+                            &lt;excludes combine.children="append"&gt;
+                                &lt;exclude&gt;src/main/webapp/META-INF/SLF4J-LICENSE&lt;/exclude&gt;
+                                &lt;exclude&gt;src/main/webapp/META-INF/JAXB-LICENSE&lt;/exclude&gt;
+                            &lt;/excludes&gt;
+                        &lt;/configuration&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
     &lt;/profiles&gt;
 &lt;/project&gt;

Modified: portals/pluto/trunk/pluto-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-testsuite/pom.xml?rev=776131&amp;r1=776130&amp;r2=776131&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-testsuite/pom.xml (original)
+++ portals/pluto/trunk/pluto-testsuite/pom.xml Mon May 18 23:15:24 2009
@@ -233,5 +233,21 @@
                 &lt;/plugins&gt;
             &lt;/build&gt;
         &lt;/profile&gt;
+        &lt;profile&gt;
+            &lt;id&gt;rat&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
+                        &lt;artifactId&gt;rat-maven-plugin&lt;/artifactId&gt;           

+                        &lt;configuration&gt;
+                            &lt;excludes combine.children="append"&gt;
+                                &lt;exclude&gt;src/main/webapp/META-INF/SLF4J-LICENSE&lt;/exclude&gt;
+                            &lt;/excludes&gt;
+                        &lt;/configuration&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
     &lt;/profiles&gt;  
 &lt;/project&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r776001 - /portals/pluto/trunk/dist-build.xml</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518161507.EA19C2388898@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518161507-EA19C2388898@eris-apache-org%3e</id>
<updated>2009-05-18T16:15:07Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 16:15:07 2009
New Revision: 776001

URL: http://svn.apache.org/viewvc?rev=776001&amp;view=rev
Log:
Include license files in tomcat dist.

Modified:
    portals/pluto/trunk/dist-build.xml

Modified: portals/pluto/trunk/dist-build.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/dist-build.xml?rev=776001&amp;r1=776000&amp;r2=776001&amp;view=diff
==============================================================================
--- portals/pluto/trunk/dist-build.xml (original)
+++ portals/pluto/trunk/dist-build.xml Mon May 18 16:15:07 2009
@@ -95,16 +95,16 @@
 			&lt;arg line="clean:clean"/&gt;
 		&lt;/exec&gt;
 		&lt;mkdir dir="${dist.basedir}"/&gt;
-		
+
 		&lt;get src="http://archive.apache.org/dist/tomcat/tomcat-${tomcat.major.version}/v${tomcat.full.version}/bin/${base.name}.tar.gz"
 		     dest="${unzip.file}"
 		/&gt;
-		
+
 		&lt;gunzip src="${unzip.file}"
 			dest="${dist.basedir}"
 			description="Creates tar from tar.gz tomcat dist"
 		/&gt;
-		
+
 		&lt;untar src="${tar.file}"
 			dest="${dist.basedir}"
 			description="Untars tomcat dist"
@@ -113,7 +113,19 @@
 		&lt;!-- Copy over README --&gt;
 		&lt;copy file="README" todir="${dist.dir}"/&gt;
 
-		&lt;!-- Add emptySessionPath="true" to Connector element in server.xml --&gt;
+        &lt;!-- Copy over additional licenses from pluto and testsuite web app--&gt;
+        &lt;copy todir="${dist.dir}" flatten="true"&gt;
+            &lt;fileset dir="${basedir}/pluto-testsuite"&gt;
+                &lt;include name="src/main/webapp/META-INF/*-LICENSE"/&gt;
+            &lt;/fileset&gt;
+		&lt;/copy&gt;
+        &lt;copy todir="${dist.dir}" flatten="true"&gt;
+            &lt;fileset dir="${basedir}/pluto-portal"&gt;
+                &lt;include name="src/main/webapp/META-INF/*-LICENSE"/&gt;
+            &lt;/fileset&gt;
+        &lt;/copy&gt;
+
+         &lt;!-- Add emptySessionPath="true" to Connector element in server.xml --&gt;
 		&lt;replace file="${dist.dir}/conf/server.xml"
 			token="redirectPort=&amp;quot;8443&amp;quot; /&amp;gt;" 
 			value="redirectPort=&amp;quot;8443&amp;quot; emptySessionPath=&amp;quot;true&amp;quot;
/&amp;gt;" 




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775995 - in /portals/pluto/trunk: pluto-portal/pom.xml pluto-testsuite/pom.xml</title>
<author><name>ate@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518154835.936BC23888AD@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518154835-936BC23888AD@eris-apache-org%3e</id>
<updated>2009-05-18T15:48:35Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: ate
Date: Mon May 18 15:48:35 2009
New Revision: 775995

URL: http://svn.apache.org/viewvc?rev=775995&amp;view=rev
Log:
Removing build &lt;finalName&gt; configuration as it interferes with the release process and
isn't needed anyway.

Modified:
    portals/pluto/trunk/pluto-portal/pom.xml
    portals/pluto/trunk/pluto-testsuite/pom.xml

Modified: portals/pluto/trunk/pluto-portal/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/pom.xml?rev=775995&amp;r1=775994&amp;r2=775995&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal/pom.xml Mon May 18 15:48:35 2009
@@ -121,7 +121,6 @@
     &lt;/dependencies&gt;
 
     &lt;build&gt;
-        &lt;finalName&gt;pluto-portal&lt;/finalName&gt;
 
         &lt;plugins&gt;
             &lt;plugin&gt;

Modified: portals/pluto/trunk/pluto-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-testsuite/pom.xml?rev=775995&amp;r1=775994&amp;r2=775995&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-testsuite/pom.xml (original)
+++ portals/pluto/trunk/pluto-testsuite/pom.xml Mon May 18 15:48:35 2009
@@ -82,7 +82,6 @@
   
     &lt;!-- Build configuration --&gt;
     &lt;build&gt;
-        &lt;finalName&gt;pluto-testsuite&lt;/finalName&gt;
         &lt;resources&gt;
             &lt;resource&gt;
                 &lt;directory&gt;src/main/resources&lt;/directory&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775992 - in /portals/pluto/trunk: pluto-portal/src/main/webapp/META-INF/ pluto-testsuite/src/main/webapp/META-INF/</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518153707.6987423888AD@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518153707-6987423888AD@eris-apache-org%3e</id>
<updated>2009-05-18T15:37:07Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 15:37:06 2009
New Revision: 775992

URL: http://svn.apache.org/viewvc?rev=775992&amp;view=rev
Log:
Add missing license files

Added:
    portals/pluto/trunk/pluto-portal/src/main/webapp/META-INF/
    portals/pluto/trunk/pluto-portal/src/main/webapp/META-INF/JAXB-LICENSE
    portals/pluto/trunk/pluto-portal/src/main/webapp/META-INF/SLF4J-LICENSE
    portals/pluto/trunk/pluto-testsuite/src/main/webapp/META-INF/
    portals/pluto/trunk/pluto-testsuite/src/main/webapp/META-INF/SLF4J-LICENSE

Added: portals/pluto/trunk/pluto-portal/src/main/webapp/META-INF/JAXB-LICENSE
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/src/main/webapp/META-INF/JAXB-LICENSE?rev=775992&amp;view=auto
==============================================================================
--- portals/pluto/trunk/pluto-portal/src/main/webapp/META-INF/JAXB-LICENSE (added)
+++ portals/pluto/trunk/pluto-portal/src/main/webapp/META-INF/JAXB-LICENSE Mon May 18 15:37:06
2009
@@ -0,0 +1 @@
+COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.01. Definitions.    1.1. "Contributor"
means each individual or entity that creates         or contributes to the creation of Modifications.
   1.2. "Contributor Version" means the combination of the Original         Software, prior
Modifications used by a Contributor (if any),         and the Modifications made by that
particular Contributor.    1.3. "Covered Software" means (a) the Original Software, or (b)
        Modifications, or (c) the combination of files containing         Original Software
with files containing Modifications, in         each case including portions thereof. 
  1.4. "Executable" means the Covered Software in any form other         than Source Code.
   1.5. "Initial Developer" means the individual or entity that first         makes Original
Software available under this License.    1.6. "Larger Work" means a work which combines
Covered Software or         portions thereof wi
 th code not governed by the terms of this         License.    1.7. "License" means this
document.    1.8. "Licensable" means having the right to grant, to the maximum        
extent possible, whether at the time of the initial grant or         subsequently acquired,
any and all of the rights conveyed         herein.    1.9. "Modifications" means the Source
Code and Executable form of         any of the following:        A. Any file that results
from an addition to, deletion from or           modification of the contents of a file containing
Original           Software or previous Modifications;        B. Any new file that contains
any part of the Original           Software or previous Modifications; or        C. Any
new file that is contributed or otherwise made           available under the terms of this
License.    1.10. "Original Software" means the Source Code and Executable          form
of computer software code that is originally released    
       under this License.    1.11. "Patent Claims" means any patent claim(s), now owned
or          hereafter acquired, including without limitation, method,          process,
and apparatus claims, in any patent Licensable by          grantor.    1.12. "Source Code"
means (a) the common form of computer software          code in which modifications are made
and (b) associated          documentation included in or with such code.    1.13. "You"
(or "Your") means an individual or a legal entity          exercising rights under, and complying
with all of the terms          of, this License.  For legal entities, "You" includes any
         entity which controls, is controlled by, or is under common          control with
You.  For purposes of this definition,          "control" means (a) the power, direct or
indirect, to cause          the direction or management of such entity, whether by     
    contract or otherwise, or (b) ownership of more than fifty     
      percent (50%) of the outstanding shares or beneficial          ownership of such entity.2.
License Grants.    2.1. The Initial Developer Grant.    Conditioned upon Your compliance
with Section 3.1 below and    subject to third party intellectual property claims, the Initial
   Developer hereby grants You a world-wide, royalty-free,    non-exclusive license:  
     (a) under intellectual property rights (other than patent or            trademark) Licensable
by Initial Developer, to use,            reproduce, modify, display, perform, sublicense
and            distribute the Original Software (or portions thereof),            with or
without Modifications, and/or as part of a Larger            Work; and        (b) under
Patent Claims infringed by the making, using or            selling of Original Software,
to make, have made, use,            practice, sell, and offer for sale, and/or otherwise
           dispose of the Original Software (or portions
  thereof).        (c) The licenses granted in Sections 2.1(a) and (b) are            effective
on the date Initial Developer first distributes            or otherwise makes the Original
Software available to a            third party under the terms of this License.       
(d) Notwithstanding Section 2.1(b) above, no patent license is            granted: (1) for
code that You delete from the Original            Software, or (2) for infringements caused
by: (i) the            modification of the Original Software, or (ii) the            combination
of the Original Software with other software            or devices.    2.2. Contributor
Grant.    Conditioned upon Your compliance with Section 3.1 below and    subject to third
party intellectual property claims, each    Contributor hereby grants You a world-wide, royalty-free,
   non-exclusive license:        (a) under intellectual property rights (other than patent
or            trademark) Licensable by Cont
 ributor to use, reproduce,            modify, display, perform, sublicense and distribute
the            Modifications created by such Contributor (or portions            thereof),
either on an unmodified basis, with other            Modifications, as Covered Software and/or
as part of a            Larger Work; and        (b) under Patent Claims infringed by the
making, using, or            selling of Modifications made by that Contributor either  
         alone and/or in combination with its Contributor Version            (or portions
of such combination), to make, use, sell,            offer for sale, have made, and/or otherwise
dispose of:            (1) Modifications made by that Contributor (or portions         
  thereof); and (2) the combination of Modifications made by            that Contributor
with its Contributor Version (or portions            of such combination).        (c) The
licenses granted in Sections 2.2(a) and 2.2(b) are            ef
 fective on the date Contributor first distributes or            otherwise makes the Modifications
available to a third            party.        (d) Notwithstanding Section 2.2(b) above,
no patent license is            granted: (1) for any code that Contributor has deleted 
          from the Contributor Version; (2) for infringements caused            by: (i) third
party modifications of Contributor Version,            or (ii) the combination of Modifications
made by that            Contributor with other software (except as part of the         
  Contributor Version) or other devices; or (3) under Patent            Claims infringed
by Covered Software in the absence of            Modifications made by that Contributor.3.
Distribution Obligations.    3.1. Availability of Source Code.    Any Covered Software
that You distribute or otherwise make    available in Executable form must also be made available
in Source    Code form and that Source Code form mus
 t be distributed only under    the terms of this License.  You must include a copy of this
   License with every copy of the Source Code form of the Covered    Software You distribute
or otherwise make available.  You must    inform recipients of any such Covered Software
in Executable form    as to how they can obtain such Covered Software in Source Code   
form in a reasonable manner on or through a medium customarily    used for software exchange.
   3.2. Modifications.    The Modifications that You create or to which You contribute are
   governed by the terms of this License.  You represent that You    believe Your Modifications
are Your original creation(s) and/or    You have sufficient rights to grant the rights conveyed
by this    License.    3.3. Required Notices.    You must include a notice in each of
Your Modifications that    identifies You as the Contributor of the Modification.  You may
   not remove or alter any copyright, patent or trade
 mark notices    contained within the Covered Software, or any notices of licensing    or
any descriptive text giving attribution to any Contributor or    the Initial Developer.
   3.4. Application of Additional Terms.    You may not offer or impose any terms on any
Covered Software in    Source Code form that alters or restricts the applicable version
   of this License or the recipients' rights hereunder.  You may    choose to offer, and
to charge a fee for, warranty, support,    indemnity or liability obligations to one or more
recipients of    Covered Software.  However, you may do so only on Your own behalf,    and
not on behalf of the Initial Developer or any Contributor.    You must make it absolutely
clear that any such warranty, support,    indemnity or liability obligation is offered by
You alone, and You    hereby agree to indemnify the Initial Developer and every    Contributor
for any liability incurred by the Initial Developer or    such Contri
 butor as a result of warranty, support, indemnity or    liability terms You offer.   
3.5. Distribution of Executable Versions.    You may distribute the Executable form of the
Covered Software    under the terms of this License or under the terms of a license of 
  Your choice, which may contain terms different from this License,    provided that You
are in compliance with the terms of this License    and that the license for the Executable
form does not attempt to    limit or alter the recipient's rights in the Source Code form
from    the rights set forth in this License.  If You distribute the    Covered Software
in Executable form under a different license, You    must make it absolutely clear that any
terms which differ from    this License are offered by You alone, not by the Initial   
Developer or Contributor.  You hereby agree to indemnify the    Initial Developer and every
Contributor for any liability incurred    by the Initial Developer or such 
 Contributor as a result of any    such terms You offer.    3.6. Larger Works.    You
may create a Larger Work by combining Covered Software with    other code not governed by
the terms of this License and    distribute the Larger Work as a single product.  In such
a case,    You must make sure the requirements of this License are fulfilled    for the
Covered Software.4. Versions of the License.    4.1. New Versions.    Sun Microsystems,
Inc. is the initial license steward and may    publish revised and/or new versions of this
License from time to    time.  Each version will be given a distinguishing version number.
   Except as provided in Section 4.3, no one other than the license    steward has the right
to modify this License.    4.2. Effect of New Versions.    You may always continue to
use, distribute or otherwise make the    Covered Software available under the terms of the
version of the    License under which You originally received the Cover
 ed Software.    If the Initial Developer includes a notice in the Original    Software
prohibiting it from being distributed or otherwise made    available under any subsequent
version of the License, You must    distribute and make the Covered Software available under
the terms    of the version of the License under which You originally received    the Covered
Software.  Otherwise, You may also choose to use,    distribute or otherwise make the Covered
Software available under    the terms of any subsequent version of the License published
by    the license steward.    4.3. Modified Versions.    When You are an Initial Developer
and You want to create a new    license for Your Original Software, You may create and use
a    modified version of this License if You: (a) rename the license    and remove any references
to the name of the license steward    (except to note that the license differs from this
License); and    (b) otherwise make it clear that the l
 icense contains terms which    differ from this License.5. DISCLAIMER OF WARRANTY. 
  COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS"    BASIS, WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED,    INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT
THE COVERED    SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR    PURPOSE
OR NON-INFRINGING.  THE ENTIRE RISK AS TO THE QUALITY AND    PERFORMANCE OF THE COVERED SOFTWARE
IS WITH YOU.  SHOULD ANY    COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE
   INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY    NECESSARY SERVICING,
REPAIR OR CORRECTION.  THIS DISCLAIMER OF    WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
LICENSE.  NO USE OF    ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS  
 DISCLAIMER.6. TERMINATION.    6.1. This License and the rights granted hereunder will
terminate    automatically if You fail to comply with terms her
 ein and fail to    cure such breach within 30 days of becoming aware of the breach.   
Provisions which, by their nature, must remain in effect beyond    the termination of this
License shall survive.    6.2. If You assert a patent infringement claim (excluding   
declaratory judgment actions) against Initial Developer or a    Contributor (the Initial
Developer or Contributor against whom You    assert such claim is referred to as "Participant")
alleging that    the Participant Software (meaning the Contributor Version where    the
Participant is a Contributor or the Original Software where    the Participant is the Initial
Developer) directly or indirectly    infringes any patent, then any and all rights granted
directly or    indirectly to You by such Participant, the Initial Developer (if    the Initial
Developer is not the Participant) and all Contributors    under Sections 2.1 and/or 2.2 of
this License shall, upon 60 days    notice from Participant term
 inate prospectively and automatically    at the expiration of such 60 day notice period,
unless if within    such 60 day period You withdraw Your claim with respect to the    Participant
Software against such Participant either unilaterally    or pursuant to a written agreement
with Participant.    6.3. In the event of termination under Sections 6.1 or 6.2 above,
   all end user licenses that have been validly granted by You or any    distributor hereunder
prior to termination (excluding licenses    granted to You by any distributor) shall survive
termination.7. LIMITATION OF LIABILITY.    UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY,
WHETHER TORT    (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE    INITIAL
DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF    COVERED SOFTWARE, OR ANY SUPPLIER
OF ANY OF SUCH PARTIES, BE    LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL,
OR    CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUD
 ING, WITHOUT    LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK    STOPPAGE,
COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER    COMMERCIAL DAMAGES OR LOSSES, EVEN
IF SUCH PARTY SHALL HAVE BEEN    INFORMED OF THE POSSIBILITY OF SUCH DAMAGES.  THIS LIMITATION
OF    LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL    INJURY RESULTING FROM
SUCH PARTY'S NEGLIGENCE TO THE EXTENT    APPLICABLE LAW PROHIBITS SUCH LIMITATION.  SOME
JURISDICTIONS DO    NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR    CONSEQUENTIAL
DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT    APPLY TO YOU.8. U.S. GOVERNMENT END
USERS.    The Covered Software is a "commercial item," as that term is    defined in 48
C.F.R. 2.101 (Oct. 1995), consisting of "commercial    computer software" (as that term is
defined at 48    C.F.R. 252.227-7014(a)(1)) and "commercial computer software    documentation"
as such terms are used in 48 C.F.R. 12.212    (Sept. 199
 5).  Consistent with 48 C.F.R. 12.212 and 48    C.F.R. 227.7202-1 through 227.7202-4 (June
1995), all    U.S. Government End Users acquire Covered Software with only those    rights
set forth herein.  This U.S. Government Rights clause is in    lieu of, and supersedes, any
other FAR, DFAR, or other clause or    provision that addresses Government rights in computer
software    under this License.9. MISCELLANEOUS.    This License represents the complete
agreement concerning subject    matter hereof.  If any provision of this License is held
to be    unenforceable, such provision shall be reformed only to the extent    necessary
to make it enforceable.  This License shall be governed    by the law of the jurisdiction
specified in a notice contained    within the Original Software (except to the extent applicable
law,    if any, provides otherwise), excluding such jurisdiction's    conflict-of-law provisions.
 Any litigation relating to this    License shall b
 e subject to the jurisdiction of the courts located    in the jurisdiction and venue specified
in a notice contained    within the Original Software, with the losing party responsible
   for costs, including, without limitation, court costs and    reasonable attorneys' fees
and expenses.  The application of the    United Nations Convention on Contracts for the International
Sale    of Goods is expressly excluded.  Any law or regulation which    provides that the
language of a contract shall be construed    against the drafter shall not apply to this
License.  You agree    that You alone are responsible for compliance with the United   
States export administration regulations (and the export control    laws and regulation of
any other countries) when You use,    distribute or otherwise make available any Covered
Software.10. RESPONSIBILITY FOR CLAIMS.    As between Initial Developer and the Contributors,
each party is    responsible for claims and damages ar
 ising, directly or    indirectly, out of its utilization of rights under this License 
  and You agree to work with Initial Developer and Contributors to    distribute such responsibility
on an equitable basis.  Nothing    herein is intended or shall be deemed to constitute any
admission    of liability.
\ No newline at end of file

Added: portals/pluto/trunk/pluto-portal/src/main/webapp/META-INF/SLF4J-LICENSE
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/src/main/webapp/META-INF/SLF4J-LICENSE?rev=775992&amp;view=auto
==============================================================================
--- portals/pluto/trunk/pluto-portal/src/main/webapp/META-INF/SLF4J-LICENSE (added)
+++ portals/pluto/trunk/pluto-portal/src/main/webapp/META-INF/SLF4J-LICENSE Mon May 18 15:37:06
2009
@@ -0,0 +1,23 @@
+SLF4J logging libraries
+
+   Copyright (c) 2004-2008 QOS.ch
+   All rights reserved.
+
+   Permission is hereby granted, free of charge, to any person obtaining
+   a copy of this software and associated documentation files (the
+   "Software"), to deal in the Software without restriction, including
+   without limitation the rights to use, copy, modify, merge, publish,
+   distribute, sublicense, and/or sell copies of the Software, and to
+   permit persons to whom the Software is furnished to do so, subject to
+   the following conditions:
+
+   The above copyright notice and this permission notice shall be
+   included in all copies or substantial portions of the Software.
+
+   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+   NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+   LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+   OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+   WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Added: portals/pluto/trunk/pluto-testsuite/src/main/webapp/META-INF/SLF4J-LICENSE
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-testsuite/src/main/webapp/META-INF/SLF4J-LICENSE?rev=775992&amp;view=auto
==============================================================================
--- portals/pluto/trunk/pluto-testsuite/src/main/webapp/META-INF/SLF4J-LICENSE (added)
+++ portals/pluto/trunk/pluto-testsuite/src/main/webapp/META-INF/SLF4J-LICENSE Mon May 18
15:37:06 2009
@@ -0,0 +1,23 @@
+SLF4J logging libraries
+
+   Copyright (c) 2004-2008 QOS.ch
+   All rights reserved.
+
+   Permission is hereby granted, free of charge, to any person obtaining
+   a copy of this software and associated documentation files (the
+   "Software"), to deal in the Software without restriction, including
+   without limitation the rights to use, copy, modify, merge, publish,
+   distribute, sublicense, and/or sell copies of the Software, and to
+   permit persons to whom the Software is furnished to do so, subject to
+   the following conditions:
+
+   The above copyright notice and this permission notice shall be
+   included in all copies or substantial portions of the Software.
+
+   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+   NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+   LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+   OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+   WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775957 - /portals/pluto/trunk/dist-build.xml</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518140636.D42C32388895@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518140636-D42C32388895@eris-apache-org%3e</id>
<updated>2009-05-18T14:06:36Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 14:06:34 2009
New Revision: 775957

URL: http://svn.apache.org/viewvc?rev=775957&amp;view=rev
Log:
Use Tomcat 6 again.

Modified:
    portals/pluto/trunk/dist-build.xml

Modified: portals/pluto/trunk/dist-build.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/dist-build.xml?rev=775957&amp;r1=775956&amp;r2=775957&amp;view=diff
==============================================================================
--- portals/pluto/trunk/dist-build.xml (original)
+++ portals/pluto/trunk/dist-build.xml Mon May 18 14:06:34 2009
@@ -44,8 +44,8 @@
 --&gt;
 &lt;project name="PlutoDistributions" default="bundle-dist"&gt;
 
-    &lt;property name="tomcat.major.version" value="5" description="Major version of Tomcat
to deploy Pluto war files."/&gt;
-    &lt;property name="tomcat.full.version" value="5.5.27" description="Full version of Tomcat
to deploy Pluto war files."/&gt;
+    &lt;property name="tomcat.major.version" value="6" description="Major version of Tomcat
to deploy Pluto war files."/&gt;
+    &lt;property name="tomcat.full.version" value="6.0.18" description="Full version of Tomcat
to deploy Pluto war files."/&gt;
 
     &lt;xmlproperty file="pom.xml"/&gt; &lt;!-- picks up pluto build version from pom file
--&gt;
     &lt;property name="pluto.version" value="${project.version}" description="Version of
Pluto to build"/&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775951 - /portals/pluto/trunk/pluto-testsuite/pom.xml</title>
<author><name>ate@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518135602.08D7D2388897@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518135602-08D7D2388897@eris-apache-org%3e</id>
<updated>2009-05-18T13:56:01Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: ate
Date: Mon May 18 13:56:01 2009
New Revision: 775951

URL: http://svn.apache.org/viewvc?rev=775951&amp;view=rev
Log:
Adding jcl-over-slf4j as commons-logging is still needed for libraries like commons-digester

Modified:
    portals/pluto/trunk/pluto-testsuite/pom.xml

Modified: portals/pluto/trunk/pluto-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-testsuite/pom.xml?rev=775951&amp;r1=775950&amp;r2=775951&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-testsuite/pom.xml (original)
+++ portals/pluto/trunk/pluto-testsuite/pom.xml Mon May 18 13:56:01 2009
@@ -65,6 +65,11 @@
             &lt;scope&gt;compile&lt;/scope&gt;
         &lt;/dependency&gt;
         &lt;dependency&gt;
+            &lt;groupId&gt;org.slf4j&lt;/groupId&gt;
+            &lt;artifactId&gt;jcl-over-slf4j&lt;/artifactId&gt;
+            &lt;scope&gt;compile&lt;/scope&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
             &lt;groupId&gt;taglibs&lt;/groupId&gt;
             &lt;artifactId&gt;standard&lt;/artifactId&gt;
             &lt;scope&gt;compile&lt;/scope&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775949 - /portals/pluto/trunk/README</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518135254.090FE2388897@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518135254-090FE2388897@eris-apache-org%3e</id>
<updated>2009-05-18T13:52:53Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 13:52:53 2009
New Revision: 775949

URL: http://svn.apache.org/viewvc?rev=775949&amp;view=rev
Log:
Minor update on the readme.

Modified:
    portals/pluto/trunk/README

Modified: portals/pluto/trunk/README
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/README?rev=775949&amp;r1=775948&amp;r2=775949&amp;view=diff
==============================================================================
--- portals/pluto/trunk/README (original)
+++ portals/pluto/trunk/README Mon May 18 13:52:53 2009
@@ -13,21 +13,19 @@
 #  See the License for the specific language governing permissions and
 #  limitations under the License
 
-Pluto 2.0 is the first version of the JSR-286 Reference Implementation (Java Portlet API
2.0). This 
-version was based on Pluto 1.1 and was refactored in the 1.1-286-COMPATIBILITY branch to
add 
-JSR-286 features and create the official JSR-286 RI submitted to the Java Community Process.
-
-The Pluto 2.0 code was subsequently refactored within the 2.0-spi-refactoring branch to make
the descriptor
-API more flexible and fix other issues. This branch became the new trunk on 11/3/2008. 
-
-See the Getting Started page on the Pluto web site (http://portals.apache.org/pluto/v11/getting-started.html)
-for instructions on how to build Pluto from source. Currently there is no binary or bundled

-distribution of Pluto 2.0. 
+Apach Pluto 2.0 is the first version of the JSR-286 Reference Implementation (Java Portlet
API 2.0).
+See the Getting Started page on the Pluto web site (http://portals.apache.org/pluto)
+for instructions on how to build Pluto from source. 
 
 A simplified way to build a bundled Pluto 2.0 distribution is to use the dist-build.xml Ant
build which downloads 
-Tomcat and calls the appropriate maven commands to create a distribution with Pluto embedded
in Tomcat. The 
+Tomcat and calls the appropriate Maven commands to create a distribution with Pluto embedded
in Tomcat. The 
 built distribution, which contains this file, when started via the startup script in the
bin directory will 
 start the Pluto portal by browsing to http://localhost:8080/pluto/portal/ and logging in
as pluto/pluto 
 (or tomcat/tomcat). See the documentation in dist-build.xml for more details. Also invoke
the Help mode on the
 Pluto Admin page for instructions on how to use the admin portlet to deploy custom portlets.
 
+This version was based on Pluto 1.1 and was refactored in the 1.1-286-COMPATIBILITY branch
to add 
+JSR-286 features and create the official JSR-286 RI submitted to the Java Community Process.
+
+The Pluto 2.0 code was subsequently refactored within the 2.0-spi-refactoring branch to make
the descriptor
+API more flexible and fix other issues. This branch became the new trunk on 11/3/2008. 




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775947 - in /portals/pluto/trunk: pluto-portal/pom.xml pluto-testsuite/pom.xml</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518134646.7EC2E2388897@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518134646-7EC2E2388897@eris-apache-org%3e</id>
<updated>2009-05-18T13:46:46Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 13:46:45 2009
New Revision: 775947

URL: http://svn.apache.org/viewvc?rev=775947&amp;view=rev
Log:
Don't generate source or javadoc for web apps.

Modified:
    portals/pluto/trunk/pluto-portal/pom.xml
    portals/pluto/trunk/pluto-testsuite/pom.xml

Modified: portals/pluto/trunk/pluto-portal/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/pom.xml?rev=775947&amp;r1=775946&amp;r2=775947&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal/pom.xml Mon May 18 13:46:45 2009
@@ -156,6 +156,19 @@
                     &lt;/execution&gt;
                 &lt;/executions&gt;
             &lt;/plugin&gt;
+            &lt;!-- Don't attach source or javadoc archive --&gt;
+            &lt;plugin&gt;
+                &lt;artifactId&gt;maven-source-plugin&lt;/artifactId&gt;
+                &lt;configuration&gt;
+                    &lt;attach&gt;false&lt;/attach&gt;
+                &lt;/configuration&gt;
+            &lt;/plugin&gt;
+            &lt;plugin&gt;
+                &lt;artifactId&gt;maven-javadoc-plugin&lt;/artifactId&gt;
+                &lt;configuration&gt;
+                    &lt;skip&gt;true&lt;/skip&gt;
+                &lt;/configuration&gt;
+            &lt;/plugin&gt;
         &lt;/plugins&gt;
     &lt;/build&gt;
 

Modified: portals/pluto/trunk/pluto-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-testsuite/pom.xml?rev=775947&amp;r1=775946&amp;r2=775947&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-testsuite/pom.xml (original)
+++ portals/pluto/trunk/pluto-testsuite/pom.xml Mon May 18 13:46:45 2009
@@ -122,6 +122,19 @@
                     &lt;/execution&gt;
                 &lt;/executions&gt;
             &lt;/plugin&gt;
+            &lt;!-- Don't attach source or javadoc archive --&gt;
+            &lt;plugin&gt;
+                &lt;artifactId&gt;maven-source-plugin&lt;/artifactId&gt;
+                &lt;configuration&gt;
+                    &lt;attach&gt;false&lt;/attach&gt;
+                &lt;/configuration&gt;
+            &lt;/plugin&gt;
+            &lt;plugin&gt;
+                &lt;artifactId&gt;maven-javadoc-plugin&lt;/artifactId&gt;
+                &lt;configuration&gt;
+                    &lt;skip&gt;true&lt;/skip&gt;
+                &lt;/configuration&gt;
+            &lt;/plugin&gt;
         &lt;/plugins&gt;
     &lt;/build&gt;
   




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775940 - /portals/pluto/trunk/dist-build.xml</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518132148.3819C23888AD@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518132148-3819C23888AD@eris-apache-org%3e</id>
<updated>2009-05-18T13:21:47Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 13:21:46 2009
New Revision: 775940

URL: http://svn.apache.org/viewvc?rev=775940&amp;view=rev
Log:
Use older Tomcat version.

Modified:
    portals/pluto/trunk/dist-build.xml

Modified: portals/pluto/trunk/dist-build.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/dist-build.xml?rev=775940&amp;r1=775939&amp;r2=775940&amp;view=diff
==============================================================================
--- portals/pluto/trunk/dist-build.xml (original)
+++ portals/pluto/trunk/dist-build.xml Mon May 18 13:21:46 2009
@@ -44,8 +44,8 @@
 --&gt;
 &lt;project name="PlutoDistributions" default="bundle-dist"&gt;
 
-    &lt;property name="tomcat.major.version" value="6" description="Major version of Tomcat
to deploy Pluto war files."/&gt;
-    &lt;property name="tomcat.full.version" value="6.0.18" description="Full version of Tomcat
to deploy Pluto war files."/&gt;
+    &lt;property name="tomcat.major.version" value="5" description="Major version of Tomcat
to deploy Pluto war files."/&gt;
+    &lt;property name="tomcat.full.version" value="5.5.27" description="Full version of Tomcat
to deploy Pluto war files."/&gt;
 
     &lt;xmlproperty file="pom.xml"/&gt; &lt;!-- picks up pluto build version from pom file
--&gt;
     &lt;property name="pluto.version" value="${project.version}" description="Version of
Pluto to build"/&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775913 - /portals/pluto/trunk/pluto-portal/pom.xml</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518120849.C753823888DB@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518120849-C753823888DB@eris-apache-org%3e</id>
<updated>2009-05-18T12:08:49Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 12:08:49 2009
New Revision: 775913

URL: http://svn.apache.org/viewvc?rev=775913&amp;view=rev
Log:
Move legal files into meta-inf to avoid overwriting the ianal plugin config.

Modified:
    portals/pluto/trunk/pluto-portal/pom.xml

Modified: portals/pluto/trunk/pluto-portal/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/pom.xml?rev=775913&amp;r1=775912&amp;r2=775913&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal/pom.xml Mon May 18 12:08:49 2009
@@ -140,18 +140,18 @@
                     &lt;/webResources&gt;
                 &lt;/configuration&gt;
             &lt;/plugin&gt;
+            &lt;!-- workaround for war processing of m-r-r-plugin causing the generated NOTICE
and LICENSE file to be put under WEB-INF/classes/META-INF --&gt;
             &lt;plugin&gt;
-                &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
-                &lt;artifactId&gt;ianal-maven-plugin&lt;/artifactId&gt;
+                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-remote-resources-plugin&lt;/artifactId&gt;
                 &lt;executions&gt;
                     &lt;execution&gt;
                         &lt;goals&gt;
-                            &lt;goal&gt;verify-legal-files&lt;/goal&gt;
+                            &lt;goal&gt;process&lt;/goal&gt;
                         &lt;/goals&gt;
                         &lt;configuration&gt;
-                            &lt;searchPaths&gt;
-                                &lt;searchPath&gt;WEB-INF/classes/META-INF&lt;/searchPath&gt;
-                            &lt;/searchPaths&gt;
+                            &lt;outputDirectory&gt;${project.build.directory}/${build.finalName}&lt;/outputDirectory&gt;
+                            &lt;attached&gt;false&lt;/attached&gt;
                         &lt;/configuration&gt;
                     &lt;/execution&gt;
                 &lt;/executions&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775906 - in /portals/pluto/trunk/pluto-util: ./ src/test/resources/org/apache/pluto/util/assemble/file/</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518114819.186F82388897@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518114819-186F82388897@eris-apache-org%3e</id>
<updated>2009-05-18T11:48:18Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 11:48:18 2009
New Revision: 775906

URL: http://svn.apache.org/viewvc?rev=775906&amp;view=rev
Log:
Add missing licence headers and remove web dtd from rat check.

Modified:
    portals/pluto/trunk/pluto-util/pom.xml
    portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/assembled.web.xml
    portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/portlet.xml
    portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/web.xml

Modified: portals/pluto/trunk/pluto-util/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-util/pom.xml?rev=775906&amp;r1=775905&amp;r2=775906&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-util/pom.xml (original)
+++ portals/pluto/trunk/pluto-util/pom.xml Mon May 18 11:48:18 2009
@@ -68,7 +68,21 @@
         &lt;/dependency&gt;
     
     &lt;/dependencies&gt;
-    
+
+    &lt;build&gt;
+        &lt;plugins&gt;
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
+                &lt;artifactId&gt;rat-maven-plugin&lt;/artifactId&gt;
+                &lt;configuration&gt;
+                    &lt;excludes&gt;
+                       &lt;exclude&gt;src/main/resources/org/apache/pluto/util/descriptors/web/web-app_2_3.dtd&lt;/exclude&gt;
+                       &lt;exclude&gt;src/test/resources/org/apache/pluto/util/assemble/web-app_2_3.dtd&lt;/exclude&gt;
+                    &lt;/excludes&gt;
+                &lt;/configuration&gt;
+            &lt;/plugin&gt;
+        &lt;/plugins&gt;
+    &lt;/build&gt;
     &lt;!-- Don't create distribution artifacts --&gt;
     &lt;profiles&gt;
         &lt;profile&gt;

Modified: portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/assembled.web.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/assembled.web.xml?rev=775906&amp;r1=775905&amp;r2=775906&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/assembled.web.xml
(original)
+++ portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/assembled.web.xml
Mon May 18 11:48:18 2009
@@ -1,4 +1,22 @@
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;!--
+  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.
+--&gt;
 &lt;web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"&gt;
     &lt;display-name&gt;WarTestServletDisplayName&lt;/display-name&gt;
     &lt;servlet&gt;

Modified: portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/portlet.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/portlet.xml?rev=775906&amp;r1=775905&amp;r2=775906&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/portlet.xml
(original)
+++ portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/portlet.xml
Mon May 18 11:48:18 2009
@@ -1,4 +1,22 @@
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;!--
+  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.
+--&gt;
 &lt;portlet-app xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd" version="1.0"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"&gt;

Modified: portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/web.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/web.xml?rev=775906&amp;r1=775905&amp;r2=775906&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/web.xml
(original)
+++ portals/pluto/trunk/pluto-util/src/test/resources/org/apache/pluto/util/assemble/file/web.xml
Mon May 18 11:48:18 2009
@@ -1,4 +1,22 @@
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;!--
+  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.
+--&gt;
 &lt;web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"&gt;
     &lt;display-name&gt;WarTestServletDisplayName&lt;/display-name&gt;
 &lt;/web-app&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775905 - in /portals/pluto/trunk/pluto-container: pom.xml src/main/resources/org/apache/pluto/container/impl/portlet-app_1_0.xsd</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518114249.DEE252388897@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518114249-DEE252388897@eris-apache-org%3e</id>
<updated>2009-05-18T11:42:49Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 11:42:49 2009
New Revision: 775905

URL: http://svn.apache.org/viewvc?rev=775905&amp;view=rev
Log:
Correct portlet xsd licence header and remove xsds and dtds from rats check.

Modified:
    portals/pluto/trunk/pluto-container/pom.xml
    portals/pluto/trunk/pluto-container/src/main/resources/org/apache/pluto/container/impl/portlet-app_1_0.xsd

Modified: portals/pluto/trunk/pluto-container/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container/pom.xml?rev=775905&amp;r1=775904&amp;r2=775905&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container/pom.xml (original)
+++ portals/pluto/trunk/pluto-container/pom.xml Mon May 18 11:42:49 2009
@@ -136,6 +136,17 @@
                     &lt;/excludes&gt;
                 &lt;/configuration&gt;
             &lt;/plugin&gt;
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
+                &lt;artifactId&gt;rat-maven-plugin&lt;/artifactId&gt;
+                &lt;configuration&gt;
+                    &lt;excludes&gt;
+                       &lt;exclude&gt;src/main/resources/org/apache/pluto/container/impl/portlet-app_1_0.xsd&lt;/exclude&gt;
+                       &lt;exclude&gt;src/main/resources/org/apache/pluto/container/impl/portlet-app_2_0.xsd&lt;/exclude&gt;
+                       &lt;exclude&gt;src/main/resources/org/apache/pluto/container/impl/web-app_2_3.dtd&lt;/exclude&gt;
+                    &lt;/excludes&gt;
+                &lt;/configuration&gt;
+            &lt;/plugin&gt;
         &lt;/plugins&gt;
     &lt;/build&gt;
 

Modified: portals/pluto/trunk/pluto-container/src/main/resources/org/apache/pluto/container/impl/portlet-app_1_0.xsd
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container/src/main/resources/org/apache/pluto/container/impl/portlet-app_1_0.xsd?rev=775905&amp;r1=775904&amp;r2=775905&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container/src/main/resources/org/apache/pluto/container/impl/portlet-app_1_0.xsd
(original)
+++ portals/pluto/trunk/pluto-container/src/main/resources/org/apache/pluto/container/impl/portlet-app_1_0.xsd
Mon May 18 11:42:49 2009
@@ -1,20 +1,4 @@
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
-&lt;!-- 
-Copyright 2004 The Apache Software Foundation
-Licensed  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.
---&gt;
 &lt;schema targetNamespace="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd" xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:portlet="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0" xml:lang="en"&gt;
 	&lt;annotation&gt;
 		&lt;documentation&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775904 - /portals/pluto/trunk/pluto-testsuite/pom.xml</title>
<author><name>ate@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518113938.ECFA023888DC@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518113938-ECFA023888DC@eris-apache-org%3e</id>
<updated>2009-05-18T11:39:38Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: ate
Date: Mon May 18 11:39:38 2009
New Revision: 775904

URL: http://svn.apache.org/viewvc?rev=775904&amp;view=rev
Log:
Restoring maven-war-plugin and maven-pluto-plugin configuration
Also adding maven-remote-resources-plugin "fix" to for war files so legal files end up in
the right location (META-INF/ instead of WEB-INF/classes/META-INF/).
Because of the m-r-r-plugin fix the ianal-maven-plugin override isn't needed anymore either

Modified:
    portals/pluto/trunk/pluto-testsuite/pom.xml

Modified: portals/pluto/trunk/pluto-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-testsuite/pom.xml?rev=775904&amp;r1=775903&amp;r2=775904&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-testsuite/pom.xml (original)
+++ portals/pluto/trunk/pluto-testsuite/pom.xml Mon May 18 11:39:38 2009
@@ -85,18 +85,39 @@
             &lt;/resource&gt;
         &lt;/resources&gt;
         &lt;plugins&gt;
+            &lt;!-- configure maven-war-plugin to use updated web.xml --&gt;
             &lt;plugin&gt;
-                &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
-                &lt;artifactId&gt;ianal-maven-plugin&lt;/artifactId&gt;
+                &lt;artifactId&gt;maven-war-plugin&lt;/artifactId&gt;
+                &lt;configuration&gt;
+                    &lt;webXml&gt;${project.build.directory}/pluto-resources/web.xml&lt;/webXml&gt;
+                &lt;/configuration&gt;
+            &lt;/plugin&gt;
+            &lt;!-- bind 'pluto:assemble' goal to 'process-resources' lifecycle --&gt;
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-pluto-plugin&lt;/artifactId&gt;
+                &lt;version&gt;${pom.version}&lt;/version&gt;
+                &lt;executions&gt;
+                    &lt;execution&gt;
+                        &lt;phase&gt;generate-resources&lt;/phase&gt;
+                        &lt;goals&gt;
+                            &lt;goal&gt;assemble&lt;/goal&gt;
+                        &lt;/goals&gt;
+                    &lt;/execution&gt;
+                &lt;/executions&gt;
+            &lt;/plugin&gt;
+            &lt;!-- workaround for war processing of m-r-r-plugin causing the generated NOTICE
and LICENSE file to be put under WEB-INF/classes/META-INF --&gt;
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-remote-resources-plugin&lt;/artifactId&gt;
                 &lt;executions&gt;
                     &lt;execution&gt;
                         &lt;goals&gt;
-                            &lt;goal&gt;verify-legal-files&lt;/goal&gt;
+                            &lt;goal&gt;process&lt;/goal&gt;
                         &lt;/goals&gt;
                         &lt;configuration&gt;
-                            &lt;searchPaths&gt;
-                                &lt;searchPath&gt;WEB-INF/classes/META-INF&lt;/searchPath&gt;
-                            &lt;/searchPaths&gt;
+                            &lt;outputDirectory&gt;${project.build.directory}/${build.finalName}&lt;/outputDirectory&gt;
+                            &lt;attached&gt;false&lt;/attached&gt;
                         &lt;/configuration&gt;
                     &lt;/execution&gt;
                 &lt;/executions&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775870 - in /portals/pluto/trunk: pluto-portal/pom.xml pom.xml</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518092240.5179123888A2@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518092240-5179123888A2@eris-apache-org%3e</id>
<updated>2009-05-18T09:22:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 09:22:38 2009
New Revision: 775870

URL: http://svn.apache.org/viewvc?rev=775870&amp;view=rev
Log:
Use jcl-over-slf4j instead of directly including jcl.

Modified:
    portals/pluto/trunk/pluto-portal/pom.xml
    portals/pluto/trunk/pom.xml

Modified: portals/pluto/trunk/pluto-portal/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/pom.xml?rev=775870&amp;r1=775869&amp;r2=775870&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal/pom.xml Mon May 18 09:22:38 2009
@@ -109,9 +109,8 @@
             &lt;scope&gt;compile&lt;/scope&gt;
         &lt;/dependency&gt;
         &lt;dependency&gt;
-            &lt;groupId&gt;commons-logging&lt;/groupId&gt;
-            &lt;artifactId&gt;commons-logging&lt;/artifactId&gt;
-            &lt;version&gt;1.1.1&lt;/version&gt;
+            &lt;groupId&gt;org.slf4j&lt;/groupId&gt;
+            &lt;artifactId&gt;jcl-over-slf4j&lt;/artifactId&gt;
         &lt;/dependency&gt;
 
         &lt;dependency&gt;

Modified: portals/pluto/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pom.xml?rev=775870&amp;r1=775869&amp;r2=775870&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pom.xml (original)
+++ portals/pluto/trunk/pom.xml Mon May 18 09:22:38 2009
@@ -286,6 +286,11 @@
                 &lt;artifactId&gt;slf4j-jdk14&lt;/artifactId&gt;
                 &lt;version&gt;${slf4j.version}&lt;/version&gt;
             &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;org.slf4j&lt;/groupId&gt;
+                &lt;artifactId&gt;jcl-over-slf4j&lt;/artifactId&gt;
+                &lt;version&gt;${slf4j.version}&lt;/version&gt;
+            &lt;/dependency&gt;
     
         &lt;!-- Specification Libraries =========================================== --&gt;
             &lt;dependency&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775862 - /portals/pluto/trunk/assembly/</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518084611.510D323888A2@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518084611-510D323888A2@eris-apache-org%3e</id>
<updated>2009-05-18T08:46:11Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 08:46:11 2009
New Revision: 775862

URL: http://svn.apache.org/viewvc?rev=775862&amp;view=rev
Log:
Remove obsolete assembly stuff and try to get dist build running.

Removed:
    portals/pluto/trunk/assembly/



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775861 - in /portals/pluto/trunk: dist-build.xml pom.xml</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518084516.145EE2388895@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518084516-145EE2388895@eris-apache-org%3e</id>
<updated>2009-05-18T08:45:15Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 08:45:15 2009
New Revision: 775861

URL: http://svn.apache.org/viewvc?rev=775861&amp;view=rev
Log:
Remove obsolete assembly stuff and try to get dist build running.

Modified:
    portals/pluto/trunk/dist-build.xml
    portals/pluto/trunk/pom.xml

Modified: portals/pluto/trunk/dist-build.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/dist-build.xml?rev=775861&amp;r1=775860&amp;r2=775861&amp;view=diff
==============================================================================
--- portals/pluto/trunk/dist-build.xml (original)
+++ portals/pluto/trunk/dist-build.xml Mon May 18 08:45:15 2009
@@ -58,56 +58,6 @@
 	&lt;property name="unzip.file" value="${dist.basedir}/${base.name}.tar.gz"/&gt;
 	&lt;property name="tar.file" value="${dist.basedir}/${base.name}.tar"/&gt;
 
-	&lt;fileset dir="." id="src.fileset"&gt;
-		&lt;include name="**/*"/&gt;
-		&lt;exclude name="**/*.class"/&gt;
-		&lt;exclude name="**/*.zip"/&gt;
-		&lt;exclude name="**/*.tar.gz"/&gt;
-		&lt;exclude name="**/*.tar.b2"/&gt;
-		&lt;exclude name="**/target/**/*"/&gt;
-		&lt;exclude name="**/.svn/*"/&gt;
-		&lt;exclude name="bin/**/*"/&gt;
-		&lt;exclude name=".classpath"/&gt;
-		&lt;exclude name=".project"/&gt;
-	&lt;/fileset&gt;					
-	
-	&lt;target name="src-dist" depends="prepare-src-dist"&gt;
-		&lt;zip destfile="${dist.basedir}/${pluto.name}-src.zip"&gt;
-			&lt;zipfileset refid="src.fileset"/&gt;							
-		&lt;/zip&gt;
-
-		&lt;antcall target="srctar-nocompress"/&gt;
-		
-		&lt;gzip src="${dist.basedir}/${pluto.name}-src.tar" 
-			destfile="${dist.basedir}/${pluto.name}-src.tar.gz"/&gt;
-		
-		&lt;bzip2 src="${dist.basedir}/${pluto.name}-src.tar" 
-			destfile="${dist.basedir}/${pluto.name}-src.tar.bz2"/&gt;
-		
-		&lt;antcall target="clean"/&gt;	
-	&lt;/target&gt;
-
-	&lt;target name="srctar-nocompress" description="Creates tar source distributions"&gt;
-		&lt;tar destfile="${dist.basedir}/${pluto.name}-src.tar"&gt;
-				&lt;tarfileset dir="."&gt; &lt;!-- refid does not work --&gt;
-					&lt;include name="**/*"/&gt;
-					&lt;exclude name="**/*.class"/&gt;
-					&lt;exclude name="**/*.zip"/&gt;
-					&lt;exclude name="**/*.tar.gz"/&gt;
-					&lt;exclude name="**/*.tar.bz2"/&gt;
-					&lt;exclude name="**/target/**/*"/&gt;
-					&lt;exclude name="**/.svn/*"/&gt;
-					&lt;exclude name="bin/**/*"/&gt;
-					&lt;exclude name=".classpath"/&gt;
-					&lt;exclude name=".project"/&gt;
-				&lt;/tarfileset&gt;	
-		&lt;/tar&gt;	
-	&lt;/target&gt;
-
-	&lt;target name="prepare-src-dist"&gt;
-		&lt;mkdir dir="${dist.basedir}"/&gt;		
-	&lt;/target&gt;
-
 	&lt;target name="bundle-dist" depends="prepare-bundle-dist,run-maven" description="Creates
zip, gzip, and bzip2 distributions"&gt;
 		&lt;!-- Copy over jars needed to deploy custom portlets --&gt;
 		&lt;copy file="pluto-util/target/pluto-util-${pluto.version}.jar" todir="${dist.dir}/PlutoDomain"/&gt;
		
@@ -183,7 +133,7 @@
 			&lt;arg line="install"/&gt;
 		&lt;/exec&gt;
 		&lt;exec executable="mvn" vmlauncher="false" dir="${basedir}" failonerror="true"&gt;
-			&lt;arg line="org.apache.portals.pluto:maven-pluto-plugin:${pluto.version}:install -DinstallDir=${user.dir}/${dist.dir}"/&gt;
+			&lt;arg line="org.apache.portals.pluto:maven-pluto-plugin:${pluto.version}:install -DinstallDir=${basedir}/${dist.dir}"/&gt;
 		&lt;/exec&gt;
 	&lt;/target&gt;
 		
@@ -191,8 +141,6 @@
 		&lt;delete dir="${dist.dir}"/&gt;
 		&lt;delete file="${unzip.file}"/&gt;	
 		&lt;delete file="${tar.file}"/&gt;	
-   	    &lt;delete file="${dist.basedir}/${pluto.name}-src.tar"/&gt;
-   	    &lt;delete file="${dist.basedir}/${pluto.name}-bin.tar"/&gt;
 	&lt;/target&gt;
 
 &lt;/project&gt;

Modified: portals/pluto/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pom.xml?rev=775861&amp;r1=775860&amp;r2=775861&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pom.xml (original)
+++ portals/pluto/trunk/pom.xml Mon May 18 08:45:15 2009
@@ -491,32 +491,6 @@
         &lt;/plugins&gt;
     &lt;/build&gt;
 
-    &lt;profiles&gt;
-        &lt;profile&gt;
-            &lt;id&gt;assembly&lt;/id&gt;
-            &lt;modules&gt;
-                &lt;module&gt;assembly&lt;/module&gt;
-            &lt;/modules&gt;
-            &lt;build&gt;
-                &lt;plugins&gt;
-                    &lt;plugin&gt;
-                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-                        &lt;artifactId&gt;maven-gpg-plugin&lt;/artifactId&gt;
-                        &lt;executions&gt;
-                            &lt;execution&gt;
-                                &lt;id&gt;sign-artifacts&lt;/id&gt;
-                                &lt;phase&gt;verify&lt;/phase&gt;
-                                &lt;goals&gt;
-                                    &lt;goal&gt;sign&lt;/goal&gt;
-                                &lt;/goals&gt;
-                            &lt;/execution&gt;
-                        &lt;/executions&gt;
-                    &lt;/plugin&gt;
-                &lt;/plugins&gt;                
-            &lt;/build&gt;        
-        &lt;/profile&gt;
-    &lt;/profiles&gt;
-
     &lt;!-- Pluto Modules ======================================================= --&gt;
 
     &lt;modules&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775846 - /portals/pluto/trunk/pluto-portal/pom.xml</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518073406.A1B712388895@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518073406-A1B712388895@eris-apache-org%3e</id>
<updated>2009-05-18T07:34:06Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 07:34:06 2009
New Revision: 775846

URL: http://svn.apache.org/viewvc?rev=775846&amp;view=rev
Log:
Add missing commons logging (Spring requires commons logging)

Modified:
    portals/pluto/trunk/pluto-portal/pom.xml

Modified: portals/pluto/trunk/pluto-portal/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/pom.xml?rev=775846&amp;r1=775845&amp;r2=775846&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal/pom.xml Mon May 18 07:34:06 2009
@@ -108,6 +108,11 @@
             &lt;artifactId&gt;slf4j-jdk14&lt;/artifactId&gt;
             &lt;scope&gt;compile&lt;/scope&gt;
         &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;commons-logging&lt;/groupId&gt;
+            &lt;artifactId&gt;commons-logging&lt;/artifactId&gt;
+            &lt;version&gt;1.1.1&lt;/version&gt;
+        &lt;/dependency&gt;
 
         &lt;dependency&gt;
             &lt;artifactId&gt;junit&lt;/artifactId&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775842 - in /portals/pluto/trunk/pluto-testsuite: pom.xml src/main/webapp/jsp/load_resource_test.jsp</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518070021.6A1562388895@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518070021-6A1562388895@eris-apache-org%3e</id>
<updated>2009-05-18T07:00:18Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 07:00:16 2009
New Revision: 775842

URL: http://svn.apache.org/viewvc?rev=775842&amp;view=rev
Log:
Fix ianal configuration, add missing headers.

Modified:
    portals/pluto/trunk/pluto-testsuite/pom.xml
    portals/pluto/trunk/pluto-testsuite/src/main/webapp/jsp/load_resource_test.jsp

Modified: portals/pluto/trunk/pluto-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-testsuite/pom.xml?rev=775842&amp;r1=775841&amp;r2=775842&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-testsuite/pom.xml (original)
+++ portals/pluto/trunk/pluto-testsuite/pom.xml Mon May 18 07:00:16 2009
@@ -85,13 +85,21 @@
             &lt;/resource&gt;
         &lt;/resources&gt;
         &lt;plugins&gt;
-          &lt;!-- configure maven-war-plugin to use updated web.xml --&gt;
             &lt;plugin&gt;
-                &lt;artifactId&gt;maven-war-plugin&lt;/artifactId&gt;
-                &lt;version&gt;2.1-beta-1&lt;/version&gt;
-                &lt;configuration&gt;
-                    &lt;webXml&gt;${project.build.directory}/pluto-resources/web.xml&lt;/webXml&gt;
-                &lt;/configuration&gt;
+                &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
+                &lt;artifactId&gt;ianal-maven-plugin&lt;/artifactId&gt;
+                &lt;executions&gt;
+                    &lt;execution&gt;
+                        &lt;goals&gt;
+                            &lt;goal&gt;verify-legal-files&lt;/goal&gt;
+                        &lt;/goals&gt;
+                        &lt;configuration&gt;
+                            &lt;searchPaths&gt;
+                                &lt;searchPath&gt;WEB-INF/classes/META-INF&lt;/searchPath&gt;
+                            &lt;/searchPaths&gt;
+                        &lt;/configuration&gt;
+                    &lt;/execution&gt;
+                &lt;/executions&gt;
             &lt;/plugin&gt;
         &lt;/plugins&gt;
     &lt;/build&gt;

Modified: portals/pluto/trunk/pluto-testsuite/src/main/webapp/jsp/load_resource_test.jsp
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-testsuite/src/main/webapp/jsp/load_resource_test.jsp?rev=775842&amp;r1=775841&amp;r2=775842&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-testsuite/src/main/webapp/jsp/load_resource_test.jsp (original)
+++ portals/pluto/trunk/pluto-testsuite/src/main/webapp/jsp/load_resource_test.jsp Mon May
18 07:00:16 2009
@@ -1,3 +1,21 @@
+&lt;%--
+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.
+--%&gt;
 &lt;%@taglib prefix="portlet" uri="http://java.sun.com/portlet_2_0" %&gt;
 &lt;%@taglib prefix="c" uri="http://java.sun.com/jstl/core" %&gt;
 &lt;portlet:defineObjects /&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775841 - in /portals/pluto/trunk/pluto-portal: pom.xml src/main/webapp/WEB-INF/classes/user-info-attributes.properties src/main/webapp/WEB-INF/classes/user-info-attributes.properties.template</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518065815.5C8132388989@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518065815-5C8132388989@eris-apache-org%3e</id>
<updated>2009-05-18T06:58:12Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 06:58:09 2009
New Revision: 775841

URL: http://svn.apache.org/viewvc?rev=775841&amp;view=rev
Log:
Fix ianal configuration, add missing headers.

Modified:
    portals/pluto/trunk/pluto-portal/pom.xml
    portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/classes/user-info-attributes.properties
    portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/classes/user-info-attributes.properties.template

Modified: portals/pluto/trunk/pluto-portal/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/pom.xml?rev=775841&amp;r1=775840&amp;r2=775841&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal/pom.xml Mon May 18 06:58:09 2009
@@ -136,6 +136,22 @@
                     &lt;/webResources&gt;
                 &lt;/configuration&gt;
             &lt;/plugin&gt;
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
+                &lt;artifactId&gt;ianal-maven-plugin&lt;/artifactId&gt;
+                &lt;executions&gt;
+                    &lt;execution&gt;
+                        &lt;goals&gt;
+                            &lt;goal&gt;verify-legal-files&lt;/goal&gt;
+                        &lt;/goals&gt;
+                        &lt;configuration&gt;
+                            &lt;searchPaths&gt;
+                                &lt;searchPath&gt;WEB-INF/classes/META-INF&lt;/searchPath&gt;
+                            &lt;/searchPaths&gt;
+                        &lt;/configuration&gt;
+                    &lt;/execution&gt;
+                &lt;/executions&gt;
+            &lt;/plugin&gt;
         &lt;/plugins&gt;
     &lt;/build&gt;
 

Modified: portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/classes/user-info-attributes.properties
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/classes/user-info-attributes.properties?rev=775841&amp;r1=775840&amp;r2=775841&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/classes/user-info-attributes.properties
(original)
+++ portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/classes/user-info-attributes.properties
Mon May 18 06:58:09 2009
@@ -0,0 +1,17 @@
+# 
+# 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.
\ No newline at end of file

Modified: portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/classes/user-info-attributes.properties.template
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/classes/user-info-attributes.properties.template?rev=775841&amp;r1=775840&amp;r2=775841&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/classes/user-info-attributes.properties.template
(original)
+++ portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/classes/user-info-attributes.properties.template
Mon May 18 06:58:09 2009
@@ -0,0 +1,17 @@
+# 
+# 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.
\ No newline at end of file




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775830 - in /portals/pluto/trunk: pluto-portal/pom.xml pluto-portal/src/assemble/ pluto-testsuite/pom.xml pluto-testsuite/src/assemble/</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518063832.6532D2388895@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518063832-6532D2388895@eris-apache-org%3e</id>
<updated>2009-05-18T06:38:30Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 06:38:29 2009
New Revision: 775830

URL: http://svn.apache.org/viewvc?rev=775830&amp;view=rev
Log:
Remove obsolete assemblies and further clean up of poms

Removed:
    portals/pluto/trunk/pluto-portal/src/assemble/
    portals/pluto/trunk/pluto-testsuite/src/assemble/
Modified:
    portals/pluto/trunk/pluto-portal/pom.xml
    portals/pluto/trunk/pluto-testsuite/pom.xml

Modified: portals/pluto/trunk/pluto-portal/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/pom.xml?rev=775830&amp;r1=775829&amp;r2=775830&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal/pom.xml Mon May 18 06:38:29 2009
@@ -124,67 +124,19 @@
                 &lt;artifactId&gt;maven-war-plugin&lt;/artifactId&gt;
                 &lt;version&gt;2.1-beta-1&lt;/version&gt;
                 &lt;configuration&gt;
-                &lt;webResources&gt;
-                    &lt;resource&gt;
-                        &lt;filtering&gt;true&lt;/filtering&gt;
-                        &lt;directory&gt;${pom.basedir}/src/main/resources&lt;/directory&gt;
-                        &lt;includes&gt;
-                            &lt;include&gt;pluto-portal-driver-config.xml&lt;/include&gt;
-                        &lt;/includes&gt;
-                        &lt;targetPath&gt;WEB-INF&lt;/targetPath&gt;
-                    &lt;/resource&gt;
-                &lt;/webResources&gt;
-            &lt;/configuration&gt;
-        &lt;/plugin&gt;
-        &lt;plugin&gt;
-            &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
-            &lt;version&gt;1.1&lt;/version&gt;
-            &lt;configuration&gt;
-                &lt;tasks&gt;
-                    &lt;get src="http://archive.apache.org/dist/tomcat/tomcat-5/archive/v5.5.9/bin/jakarta-tomcat-5.5.9.tar.gz"
dest="target/tomcat.tar.gz" /&gt;
-                    &lt;gunzip src="target/tomcat.tar.gz" /&gt;
-                    &lt;untar src="target/tomcat.tar" /&gt;
-                &lt;/tasks&gt;
-            &lt;/configuration&gt;
-        &lt;/plugin&gt;
-        &lt;plugin&gt;
-          &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
-          &lt;artifactId&gt;ianal-maven-plugin&lt;/artifactId&gt;
-          &lt;executions&gt;
-            &lt;execution&gt;
-              &lt;goals&gt;
-                &lt;goal&gt;verify-legal-files&lt;/goal&gt;
-              &lt;/goals&gt;
-              &lt;configuration&gt;
-                  &lt;!--&lt;searchPaths&gt;WEB-INF/classes/META-INF&lt;/searchPaths&gt;--&gt;
-                  &lt;!-- TODO fix skip --&gt;
-                  &lt;skip&gt;true&lt;/skip&gt;
-              &lt;/configuration&gt;
-            &lt;/execution&gt;
-          &lt;/executions&gt;
-        &lt;/plugin&gt;
-
-      &lt;plugin&gt;
-        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
-        &lt;inherited&gt;false&lt;/inherited&gt;
-        &lt;configuration&gt;
-          &lt;descriptor&gt;src/assemble/bin.xml&lt;/descriptor&gt;
-          &lt;finalName&gt;pluto-portal-${pom.version}&lt;/finalName&gt;
-        &lt;/configuration&gt;
-          &lt;executions&gt;
-            &lt;execution&gt;
-              &lt;id&gt;make-project-assembly-source-release&lt;/id&gt;
-                &lt;inherited&gt;false&lt;/inherited&gt;
-              &lt;phase&gt;package&lt;/phase&gt;
-              &lt;goals&gt;
-                &lt;goal&gt;single&lt;/goal&gt;
-              &lt;/goals&gt;
-            &lt;/execution&gt;
-          &lt;/executions&gt;
-      &lt;/plugin&gt;
-
+                    &lt;webResources&gt;
+                        &lt;resource&gt;
+                            &lt;filtering&gt;true&lt;/filtering&gt;
+                            &lt;directory&gt;${pom.basedir}/src/main/resources&lt;/directory&gt;
+                            &lt;includes&gt;
+                                &lt;include&gt;pluto-portal-driver-config.xml&lt;/include&gt;
+                            &lt;/includes&gt;
+                            &lt;targetPath&gt;WEB-INF&lt;/targetPath&gt;
+                        &lt;/resource&gt;
+                    &lt;/webResources&gt;
+                &lt;/configuration&gt;
+            &lt;/plugin&gt;
         &lt;/plugins&gt;
-
     &lt;/build&gt;
 
     &lt;!-- Don't create distribution artifacts --&gt;
@@ -205,5 +157,3 @@
         &lt;/profile&gt;
     &lt;/profiles&gt;
 &lt;/project&gt;
-
-

Modified: portals/pluto/trunk/pluto-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-testsuite/pom.xml?rev=775830&amp;r1=775829&amp;r2=775830&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-testsuite/pom.xml (original)
+++ portals/pluto/trunk/pluto-testsuite/pom.xml Mon May 18 06:38:29 2009
@@ -75,131 +75,103 @@
         &lt;/dependency&gt;
     &lt;/dependencies&gt;
   
-  &lt;!-- Build configuration --&gt;
-  &lt;build&gt;
-    &lt;finalName&gt;pluto-testsuite&lt;/finalName&gt;
-    &lt;resources&gt;
-      &lt;resource&gt;
-        &lt;directory&gt;src/main/resources&lt;/directory&gt;
-        &lt;filtering&gt;true&lt;/filtering&gt;
-      &lt;/resource&gt;
-    &lt;/resources&gt;
-    &lt;plugins&gt;
-        &lt;plugin&gt;
-          &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
-          &lt;artifactId&gt;ianal-maven-plugin&lt;/artifactId&gt;
-          &lt;executions&gt;
-            &lt;execution&gt;
-              &lt;goals&gt;
-                &lt;goal&gt;verify-legal-files&lt;/goal&gt;
-              &lt;/goals&gt;
-              &lt;configuration&gt;
-                  &lt;!--&lt;searchPaths&gt;WEB-INF/classes/META-INF&lt;/searchPaths&gt;--&gt;
-                  &lt;!-- TODO fix skip --&gt;
-                  &lt;skip&gt;true&lt;/skip&gt;
-              &lt;/configuration&gt;
-            &lt;/execution&gt;
-          &lt;/executions&gt;
-        &lt;/plugin&gt;
-      &lt;!-- configure maven-war-plugin to use updated web.xml --&gt;
-      &lt;plugin&gt;
-        &lt;artifactId&gt;maven-war-plugin&lt;/artifactId&gt;
-        &lt;configuration&gt;
-          &lt;webXml&gt;${project.build.directory}/pluto-resources/web.xml&lt;/webXml&gt;
-        &lt;/configuration&gt;
-      &lt;/plugin&gt;
-      &lt;!-- bind 'pluto:assemble' goal to 'process-resources' lifecycle --&gt;
-      &lt;plugin&gt;
-        &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-        &lt;artifactId&gt;maven-pluto-plugin&lt;/artifactId&gt;
-        &lt;version&gt;${pom.version}&lt;/version&gt;
-        &lt;executions&gt;
-          &lt;execution&gt;
-            &lt;phase&gt;generate-resources&lt;/phase&gt;
-            &lt;goals&gt;
-              &lt;goal&gt;assemble&lt;/goal&gt;
-            &lt;/goals&gt;
-          &lt;/execution&gt;
-        &lt;/executions&gt;
-      &lt;/plugin&gt;
-    &lt;/plugins&gt;
-  &lt;/build&gt;
-  
-  &lt;profiles&gt;
-    &lt;profile&gt;
-      &lt;id&gt;deploy-testsuite&lt;/id&gt;
-      &lt;activation&gt;
-        &lt;activeByDefault&gt;false&lt;/activeByDefault&gt;
-        &lt;property&gt;&lt;name&gt;deploy.dir&lt;/name&gt;&lt;/property&gt;
-      &lt;/activation&gt;
-      &lt;build&gt;
-        &lt;plugins&gt;
-          &lt;plugin&gt;
-            &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
-            &lt;executions&gt;
-              &lt;execution&gt;
-                &lt;phase&gt;integration-test&lt;/phase&gt;
-                &lt;configuration&gt;
-                  &lt;tasks&gt;
-                    &lt;!--
-                      Use this to build and deploy the testsuite war.
-                      PORTLET_DEPLOY_DIR is an environmental variable 
-                      pointing to the hot-deploy directory of your portal.
-                      You can also use -Ddeploy.dir=&lt;path to deployment dir&gt;
-                      on the command line when invoking maven:
-                      mvn -Ddeploy.dir=/pluto-1.1.4/webapps integration-test
-                    --&gt;
-                    &lt;property environment="env"/&gt;
-                    &lt;property name="deploy.dir" value="${env.PORTLET_DEPLOY_DIR}"/&gt;
-                    &lt;copy file="target/${pom.build.finalName}.war" tofile="${deploy.dir}/testsuite.war"/&gt;
-                  &lt;/tasks&gt;
-                &lt;/configuration&gt;
-                &lt;goals&gt;
-                  &lt;goal&gt;run&lt;/goal&gt;
-                &lt;/goals&gt;
-              &lt;/execution&gt;
-            &lt;/executions&gt;
-          &lt;/plugin&gt;
-        &lt;/plugins&gt;
-      &lt;/build&gt;
-    &lt;/profile&gt;
-    &lt;profile&gt;
-      &lt;id&gt;deploy-testsuite-by-env&lt;/id&gt;
-      &lt;activation&gt;
-        &lt;activeByDefault&gt;false&lt;/activeByDefault&gt;
-        &lt;property&gt;&lt;name&gt;env.PORTLET_DEPLOY_DIR&lt;/name&gt;&lt;/property&gt;
-      &lt;/activation&gt;
-      &lt;build&gt;
+    &lt;!-- Build configuration --&gt;
+    &lt;build&gt;
+        &lt;finalName&gt;pluto-testsuite&lt;/finalName&gt;
+        &lt;resources&gt;
+            &lt;resource&gt;
+                &lt;directory&gt;src/main/resources&lt;/directory&gt;
+                &lt;filtering&gt;true&lt;/filtering&gt;
+            &lt;/resource&gt;
+        &lt;/resources&gt;
         &lt;plugins&gt;
-          &lt;plugin&gt;
-            &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
-            &lt;executions&gt;
-              &lt;execution&gt;
-                &lt;phase&gt;integration-test&lt;/phase&gt;
+          &lt;!-- configure maven-war-plugin to use updated web.xml --&gt;
+            &lt;plugin&gt;
+                &lt;artifactId&gt;maven-war-plugin&lt;/artifactId&gt;
+                &lt;version&gt;2.1-beta-1&lt;/version&gt;
                 &lt;configuration&gt;
-                  &lt;tasks&gt;
-                    &lt;!--
-                      Use this to build and deploy the testsuite war.
-                      PORTLET_DEPLOY_DIR is an environmental variable 
-                      pointing to the hot-deploy directory of your portal.
-                      You can also use -Ddeploy.dir=&lt;path to deployment dir&gt;
-                      on the command line when invoking maven:
-                      mvn -Ddeploy.dir=/pluto-1.1.4/webapps integration-test
-                    --&gt;
-                    &lt;property environment="env"/&gt;
-                    &lt;property name="deploy.dir" value="${env.PORTLET_DEPLOY_DIR}"/&gt;
-                    &lt;copy file="target/${pom.build.finalName}.war" tofile="${deploy.dir}/testsuite.war"/&gt;
-                  &lt;/tasks&gt;
+                    &lt;webXml&gt;${project.build.directory}/pluto-resources/web.xml&lt;/webXml&gt;
                 &lt;/configuration&gt;
-                &lt;goals&gt;
-                  &lt;goal&gt;run&lt;/goal&gt;
-                &lt;/goals&gt;
-              &lt;/execution&gt;
-            &lt;/executions&gt;
-          &lt;/plugin&gt;
+            &lt;/plugin&gt;
         &lt;/plugins&gt;
-      &lt;/build&gt;
-    &lt;/profile&gt;
+    &lt;/build&gt;
+  
+    &lt;profiles&gt;
+        &lt;profile&gt;
+            &lt;id&gt;deploy-testsuite&lt;/id&gt;
+            &lt;activation&gt;
+                &lt;activeByDefault&gt;false&lt;/activeByDefault&gt;
+                &lt;property&gt;&lt;name&gt;deploy.dir&lt;/name&gt;&lt;/property&gt;
+            &lt;/activation&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
+                        &lt;executions&gt;
+                            &lt;execution&gt;
+                                &lt;phase&gt;integration-test&lt;/phase&gt;
+                                &lt;configuration&gt;
+                                    &lt;tasks&gt;
+                                    &lt;!--
+                                      Use this to build and deploy the testsuite war.
+                                      PORTLET_DEPLOY_DIR is an environmental variable 
+                                      pointing to the hot-deploy directory of your portal.
+                                      You can also use -Ddeploy.dir=&lt;path to deployment
dir&gt;
+                                      on the command line when invoking maven:
+                                      mvn -Ddeploy.dir=/pluto-1.1.4/webapps integration-test
+                                    --&gt;
+                                        &lt;property environment="env"/&gt;
+                                        &lt;property name="deploy.dir" value="${env.PORTLET_DEPLOY_DIR}"/&gt;
+                                        &lt;copy file="target/${pom.build.finalName}.war"
tofile="${deploy.dir}/testsuite.war"/&gt;
+                                    &lt;/tasks&gt;
+                                &lt;/configuration&gt;
+                                &lt;goals&gt;
+                                    &lt;goal&gt;run&lt;/goal&gt;
+                                &lt;/goals&gt;
+                            &lt;/execution&gt;
+                        &lt;/executions&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+        &lt;profile&gt;
+            &lt;id&gt;deploy-testsuite-by-env&lt;/id&gt;
+            &lt;activation&gt;
+                &lt;activeByDefault&gt;false&lt;/activeByDefault&gt;
+                &lt;property&gt;&lt;name&gt;env.PORTLET_DEPLOY_DIR&lt;/name&gt;&lt;/property&gt;
+            &lt;/activation&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
+                        &lt;executions&gt;
+                            &lt;execution&gt;
+                                &lt;phase&gt;integration-test&lt;/phase&gt;
+                                &lt;configuration&gt;
+                                    &lt;tasks&gt;
+                                    &lt;!--
+                                      Use this to build and deploy the testsuite war.
+                                      PORTLET_DEPLOY_DIR is an environmental variable 
+                                      pointing to the hot-deploy directory of your portal.
+                                      You can also use -Ddeploy.dir=&lt;path to deployment
dir&gt;
+                                      on the command line when invoking maven:
+                                      mvn -Ddeploy.dir=/pluto-1.1.4/webapps integration-test
+                                    --&gt;
+                                        &lt;property environment="env"/&gt;
+                                        &lt;property name="deploy.dir" value="${env.PORTLET_DEPLOY_DIR}"/&gt;
+                                        &lt;copy file="target/${pom.build.finalName}.war"
tofile="${deploy.dir}/testsuite.war"/&gt;
+                                    &lt;/tasks&gt;
+                                &lt;/configuration&gt;
+                                &lt;goals&gt;
+                                    &lt;goal&gt;run&lt;/goal&gt;
+                                &lt;/goals&gt;
+                            &lt;/execution&gt;
+                        &lt;/executions&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+    
     &lt;!-- Don't create distribution artifacts --&gt;
         &lt;profile&gt;
             &lt;id&gt;apache-release&lt;/id&gt;
@@ -215,8 +187,5 @@
                 &lt;/plugins&gt;
             &lt;/build&gt;
         &lt;/profile&gt;
-    &lt;/profiles&gt;
-  
+    &lt;/profiles&gt;  
 &lt;/project&gt;
-
-




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775828 - in /portals/pluto/trunk: pluto-container/src/assemble/ pluto-portal-driver-impl/pom.xml pluto-portal-driver/pom.xml pluto-portal-driver/src/assemble/ pluto-taglib/pom.xml pluto-taglib/src/site/</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518062516.A9C582388895@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518062516-A9C582388895@eris-apache-org%3e</id>
<updated>2009-05-18T06:25:16Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 06:25:16 2009
New Revision: 775828

URL: http://svn.apache.org/viewvc?rev=775828&amp;view=rev
Log:
Remove obsolete assemblies and further clean up of poms

Removed:
    portals/pluto/trunk/pluto-container/src/assemble/
    portals/pluto/trunk/pluto-portal-driver/src/assemble/
    portals/pluto/trunk/pluto-taglib/src/site/
Modified:
    portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
    portals/pluto/trunk/pluto-portal-driver/pom.xml
    portals/pluto/trunk/pluto-taglib/pom.xml

Modified: portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver-impl/pom.xml?rev=775828&amp;r1=775827&amp;r2=775828&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver-impl/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver-impl/pom.xml Mon May 18 06:25:16 2009
@@ -29,7 +29,6 @@
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-portal-driver-impl&lt;/artifactId&gt;
-    &lt;packaging&gt;jar&lt;/packaging&gt;
     &lt;name&gt;Apache Pluto Portal Driver Implementation Classes&lt;/name&gt;
 
     &lt;dependencies&gt;

Modified: portals/pluto/trunk/pluto-portal-driver/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver/pom.xml?rev=775828&amp;r1=775827&amp;r2=775828&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver/pom.xml Mon May 18 06:25:16 2009
@@ -29,7 +29,6 @@
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-portal-driver&lt;/artifactId&gt;
-    &lt;packaging&gt;jar&lt;/packaging&gt;
     &lt;name&gt;Apache Pluto Portal Driver&lt;/name&gt;
 
     &lt;dependencies&gt;

Modified: portals/pluto/trunk/pluto-taglib/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-taglib/pom.xml?rev=775828&amp;r1=775827&amp;r2=775828&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-taglib/pom.xml (original)
+++ portals/pluto/trunk/pluto-taglib/pom.xml Mon May 18 06:25:16 2009
@@ -29,7 +29,6 @@
     &lt;/parent&gt;
 
     &lt;artifactId&gt;pluto-taglib&lt;/artifactId&gt;
-    &lt;packaging&gt;jar&lt;/packaging&gt;
     &lt;name&gt;Apache Pluto Portlet Tag Library&lt;/name&gt;
     &lt;description&gt;Apache Pluto's Java Portlet Specification Tag Library implementation&lt;/description&gt;
 




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775827 - in /portals/pluto/trunk/pluto-ant-tasks: pom.xml src/assemble/</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090518062000.5137A23888DC@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090518062000-5137A23888DC@eris-apache-org%3e</id>
<updated>2009-05-18T06:20:00Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Mon May 18 06:19:59 2009
New Revision: 775827

URL: http://svn.apache.org/viewvc?rev=775827&amp;view=rev
Log:
Fix pom for ant tasks and remove obsolete assembly config.

Removed:
    portals/pluto/trunk/pluto-ant-tasks/src/assemble/
Modified:
    portals/pluto/trunk/pluto-ant-tasks/pom.xml

Modified: portals/pluto/trunk/pluto-ant-tasks/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-ant-tasks/pom.xml?rev=775827&amp;r1=775826&amp;r2=775827&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-ant-tasks/pom.xml (original)
+++ portals/pluto/trunk/pluto-ant-tasks/pom.xml Mon May 18 06:19:59 2009
@@ -44,41 +44,25 @@
             &lt;artifactId&gt;ant&lt;/artifactId&gt;
             &lt;scope&gt;provided&lt;/scope&gt;
         &lt;/dependency&gt;
-        &lt;dependency&gt;
-            &lt;groupId&gt;junit&lt;/groupId&gt;
-            &lt;artifactId&gt;junit&lt;/artifactId&gt;
-        &lt;/dependency&gt;
     &lt;/dependencies&gt;
 
-  &lt;build&gt; 
-    &lt;scriptSourceDirectory&gt;src/main/scripts&lt;/scriptSourceDirectory&gt; 
-    &lt;plugins&gt;
-        &lt;!-- todo remove --&gt;
-        &lt;plugin&gt;
-          &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
-          &lt;artifactId&gt;ianal-maven-plugin&lt;/artifactId&gt;
-          &lt;executions&gt;
-            &lt;execution&gt;
-              &lt;goals&gt;
-                &lt;goal&gt;verify-legal-files&lt;/goal&gt;
-              &lt;/goals&gt;
-              &lt;configuration&gt;
-                  &lt;!--&lt;searchPaths&gt;WEB-INF/classes/META-INF&lt;/searchPaths&gt;--&gt;
-                  &lt;!-- TODO fix skip --&gt;
-                  &lt;skip&gt;true&lt;/skip&gt;
-              &lt;/configuration&gt;
-            &lt;/execution&gt;
-          &lt;/executions&gt;
-        &lt;/plugin&gt;
-      &lt;plugin&gt;
-        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
-        &lt;configuration&gt;
-          &lt;descriptor&gt;src/assemble/bin.xml&lt;/descriptor&gt;
-        &lt;/configuration&gt;
-      &lt;/plugin&gt;
-    &lt;/plugins&gt;
-  &lt;/build&gt;
-  
+    &lt;!-- Don't create distribution artifacts --&gt;
+    &lt;profiles&gt;
+        &lt;profile&gt;
+            &lt;id&gt;apache-release&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
+                        &lt;configuration&gt;
+                            &lt;skipAssembly&gt;true&lt;/skipAssembly&gt;
+                        &lt;/configuration&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+    &lt;/profiles&gt;
 &lt;/project&gt;
 
 




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775679 - in /portals/pluto/trunk: maven-pluto-plugin/pom.xml pluto-container/pom.xml pluto-portal-driver-impl/pom.xml</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090517155310.54DFF23888DD@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090517155310-54DFF23888DD@eris-apache-org%3e</id>
<updated>2009-05-17T15:53:10Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Sun May 17 15:53:09 2009
New Revision: 775679

URL: http://svn.apache.org/viewvc?rev=775679&amp;view=rev
Log:
Some pom formatting and correct reference to parent pom.

Modified:
    portals/pluto/trunk/maven-pluto-plugin/pom.xml
    portals/pluto/trunk/pluto-container/pom.xml
    portals/pluto/trunk/pluto-portal-driver-impl/pom.xml

Modified: portals/pluto/trunk/maven-pluto-plugin/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/maven-pluto-plugin/pom.xml?rev=775679&amp;r1=775678&amp;r2=775679&amp;view=diff
==============================================================================
--- portals/pluto/trunk/maven-pluto-plugin/pom.xml (original)
+++ portals/pluto/trunk/maven-pluto-plugin/pom.xml Sun May 17 15:53:09 2009
@@ -32,65 +32,64 @@
     &lt;packaging&gt;maven-plugin&lt;/packaging&gt;
     &lt;name&gt;Maven Pluto Installer Plugin&lt;/name&gt;
 
-  &lt;dependencies&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-      &lt;artifactId&gt;pluto-util&lt;/artifactId&gt;
-      &lt;version&gt;${pom.version}&lt;/version&gt;
-      &lt;scope&gt;compile&lt;/scope&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
-      &lt;artifactId&gt;maven-core&lt;/artifactId&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
-      &lt;artifactId&gt;maven-artifact&lt;/artifactId&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
-      &lt;artifactId&gt;maven-model&lt;/artifactId&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
-      &lt;artifactId&gt;maven-project&lt;/artifactId&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
-      &lt;artifactId&gt;maven-plugin-api&lt;/artifactId&gt;
-    &lt;/dependency&gt;
-    
-    &lt;!-- Do not remove this dep: See MNG-1178 --&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;junit&lt;/groupId&gt;
-      &lt;artifactId&gt;junit&lt;/artifactId&gt;
-    &lt;/dependency&gt;
-    
-  &lt;/dependencies&gt;
+    &lt;dependencies&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+            &lt;artifactId&gt;pluto-util&lt;/artifactId&gt;
+            &lt;version&gt;${pom.version}&lt;/version&gt;
+            &lt;scope&gt;compile&lt;/scope&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
+            &lt;artifactId&gt;maven-core&lt;/artifactId&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
+            &lt;artifactId&gt;maven-artifact&lt;/artifactId&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
+            &lt;artifactId&gt;maven-model&lt;/artifactId&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
+            &lt;artifactId&gt;maven-project&lt;/artifactId&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
+            &lt;artifactId&gt;maven-plugin-api&lt;/artifactId&gt;
+        &lt;/dependency&gt;
+
+        &lt;!-- Do not remove this dep: See MNG-1178 --&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;junit&lt;/groupId&gt;
+            &lt;artifactId&gt;junit&lt;/artifactId&gt;
+        &lt;/dependency&gt;
+    &lt;/dependencies&gt;
   
-  &lt;build&gt; 
-    &lt;scriptSourceDirectory&gt;src/main/scripts&lt;/scriptSourceDirectory&gt;    
-    &lt;resources&gt;
-      &lt;resource&gt;
-        &lt;directory&gt;src/main/scripts&lt;/directory&gt;
-        &lt;includes&gt;
-          &lt;include&gt;**/*.mmld&lt;/include&gt;
-        &lt;/includes&gt;
-      &lt;/resource&gt;
-      &lt;resource&gt;
-        &lt;directory&gt;src/main/resources&lt;/directory&gt;        
-        &lt;filtering&gt;true&lt;/filtering&gt;
-      &lt;/resource&gt;
-    &lt;/resources&gt;
-    &lt;plugins&gt;
-      &lt;plugin&gt;
-        &lt;artifactId&gt;maven-plugin-plugin&lt;/artifactId&gt;        
-        &lt;configuration&gt;
-          &lt;goalPrefix&gt;pluto2&lt;/goalPrefix&gt;
-        &lt;/configuration&gt;
-      &lt;/plugin&gt;
-    &lt;/plugins&gt;
-  &lt;/build&gt;
+    &lt;build&gt; 
+        &lt;scriptSourceDirectory&gt;src/main/scripts&lt;/scriptSourceDirectory&gt;    
+        &lt;resources&gt;
+            &lt;resource&gt;
+                &lt;directory&gt;src/main/scripts&lt;/directory&gt;
+                &lt;includes&gt;
+                    &lt;include&gt;**/*.mmld&lt;/include&gt;
+                &lt;/includes&gt;
+            &lt;/resource&gt;
+            &lt;resource&gt;
+                &lt;directory&gt;src/main/resources&lt;/directory&gt;        
+                &lt;filtering&gt;true&lt;/filtering&gt;
+            &lt;/resource&gt;
+        &lt;/resources&gt;
+        &lt;plugins&gt;
+            &lt;plugin&gt;
+                &lt;artifactId&gt;maven-plugin-plugin&lt;/artifactId&gt;        
+                &lt;configuration&gt;
+                    &lt;goalPrefix&gt;pluto2&lt;/goalPrefix&gt;
+                &lt;/configuration&gt;
+            &lt;/plugin&gt;
+        &lt;/plugins&gt;
+    &lt;/build&gt;
 
     &lt;!-- Don't create distribution artifacts --&gt;
     &lt;profiles&gt;
@@ -110,6 +109,3 @@
         &lt;/profile&gt;
     &lt;/profiles&gt;
 &lt;/project&gt;
-
-
-

Modified: portals/pluto/trunk/pluto-container/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container/pom.xml?rev=775679&amp;r1=775678&amp;r2=775679&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container/pom.xml (original)
+++ portals/pluto/trunk/pluto-container/pom.xml Sun May 17 15:53:09 2009
@@ -31,10 +31,8 @@
     &lt;artifactId&gt;pluto-container&lt;/artifactId&gt;
     &lt;name&gt;Apache Pluto Portlet Container&lt;/name&gt;
     &lt;description&gt;The Apache Pluto portlet container.&lt;/description&gt;
-  
-  
-    &lt;dependencies&gt;
 
+    &lt;dependencies&gt;
         &lt;dependency&gt;
             &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
             &lt;artifactId&gt;pluto-container-api&lt;/artifactId&gt;
@@ -112,32 +110,32 @@
     &lt;/dependencies&gt;
 
     &lt;build&gt;
-         &lt;resources&gt;
-             &lt;resource&gt;
-                 &lt;directory&gt;src/main/resources&lt;/directory&gt;
-                 &lt;filtering&gt;true&lt;/filtering&gt;
+        &lt;resources&gt;
+            &lt;resource&gt;
+                &lt;directory&gt;src/main/resources&lt;/directory&gt;
+                &lt;filtering&gt;true&lt;/filtering&gt;
             &lt;/resource&gt;
-       &lt;/resources&gt;
-       &lt;testResources&gt;
-           &lt;testResource&gt;
-               &lt;directory&gt;src/main/resources&lt;/directory&gt;
-               &lt;filtering&gt;true&lt;/filtering&gt;
-           &lt;/testResource&gt;
-       &lt;/testResources&gt;
+        &lt;/resources&gt;
+        &lt;testResources&gt;
+            &lt;testResource&gt;
+                &lt;directory&gt;src/main/resources&lt;/directory&gt;
+                &lt;filtering&gt;true&lt;/filtering&gt;
+            &lt;/testResource&gt;
+        &lt;/testResources&gt;
 
-      &lt;plugins&gt;
+        &lt;plugins&gt;
           &lt;!-- Surefire Plugin: Exec Tests ===================================== --&gt;
-          &lt;plugin&gt;
-              &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;
-              &lt;configuration&gt;
-                  &lt;includes&gt;
-                      &lt;include&gt;**/*Test.java&lt;/include&gt;
-                  &lt;/includes&gt;
-                  &lt;excludes&gt;
-                      &lt;exclude&gt;**/PlutoTestCase.java&lt;/exclude&gt;
-                  &lt;/excludes&gt;
-              &lt;/configuration&gt;
-          &lt;/plugin&gt;
+            &lt;plugin&gt;
+                &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;
+                &lt;configuration&gt;
+                    &lt;includes&gt;
+                        &lt;include&gt;**/*Test.java&lt;/include&gt;
+                    &lt;/includes&gt;
+                    &lt;excludes&gt;
+                        &lt;exclude&gt;**/PlutoTestCase.java&lt;/exclude&gt;
+                    &lt;/excludes&gt;
+                &lt;/configuration&gt;
+            &lt;/plugin&gt;
         &lt;/plugins&gt;
     &lt;/build&gt;
 

Modified: portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver-impl/pom.xml?rev=775679&amp;r1=775678&amp;r2=775679&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver-impl/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver-impl/pom.xml Sun May 17 15:53:09 2009
@@ -154,7 +154,4 @@
             &lt;/build&gt;
         &lt;/profile&gt;
     &lt;/profiles&gt;
-&lt;/project&gt;
-
-
-
+&lt;/project&gt;
\ No newline at end of file




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775678 - in /portals/pluto/trunk: assembly/ maven-pluto-plugin/ pluto-ant-tasks/ pluto-container-api/ pluto-container-driver-api/ pluto-container/ pluto-portal-driver-impl/ pluto-portal-driver/ pluto-portal/ pluto-taglib/ pluto-testsuite/</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090517154612.5310523888DD@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090517154612-5310523888DD@eris-apache-org%3e</id>
<updated>2009-05-17T15:46:11Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Sun May 17 15:46:11 2009
New Revision: 775678

URL: http://svn.apache.org/viewvc?rev=775678&amp;view=rev
Log:
Some pom formatting and correct reference to parent pom.

Modified:
    portals/pluto/trunk/assembly/pom.xml
    portals/pluto/trunk/maven-pluto-plugin/pom.xml
    portals/pluto/trunk/pluto-ant-tasks/pom.xml
    portals/pluto/trunk/pluto-container-api/pom.xml
    portals/pluto/trunk/pluto-container-driver-api/pom.xml
    portals/pluto/trunk/pluto-container/pom.xml
    portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
    portals/pluto/trunk/pluto-portal-driver/pom.xml
    portals/pluto/trunk/pluto-portal/pom.xml
    portals/pluto/trunk/pluto-taglib/pom.xml
    portals/pluto/trunk/pluto-testsuite/pom.xml

Modified: portals/pluto/trunk/assembly/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/assembly/pom.xml?rev=775678&amp;r1=775677&amp;r2=775678&amp;view=diff
==============================================================================
--- portals/pluto/trunk/assembly/pom.xml (original)
+++ portals/pluto/trunk/assembly/pom.xml Sun May 17 15:46:11 2009
@@ -18,14 +18,13 @@
 --&gt;
 &lt;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"&gt;
 
-  &lt;parent&gt;
-    &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-    &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-    &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
-    &lt;relativePath&gt;../parent&lt;/relativePath&gt;
-  &lt;/parent&gt;
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
+    &lt;parent&gt;
+        &lt;artifactId&gt;pluto&lt;/artifactId&gt;
+        &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+    &lt;/parent&gt;
 
-  &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;artifactId&gt;assembly&lt;/artifactId&gt;
   &lt;name&gt;Apache Pluto Assembly Project&lt;/name&gt;
   &lt;url&gt;http://portals.apache.org/pluto/&lt;/url&gt;

Modified: portals/pluto/trunk/maven-pluto-plugin/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/maven-pluto-plugin/pom.xml?rev=775678&amp;r1=775677&amp;r2=775678&amp;view=diff
==============================================================================
--- portals/pluto/trunk/maven-pluto-plugin/pom.xml (original)
+++ portals/pluto/trunk/maven-pluto-plugin/pom.xml Sun May 17 15:46:11 2009
@@ -21,17 +21,17 @@
          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"&gt;
   
-  &lt;parent&gt;
-    &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-    &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-    &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
-    &lt;relativePath&gt;../parent&lt;/relativePath&gt;
-  &lt;/parent&gt;
-  &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
-  &lt;artifactId&gt;maven-pluto-plugin&lt;/artifactId&gt; 
-  &lt;packaging&gt;maven-plugin&lt;/packaging&gt;
-  &lt;name&gt;Maven Pluto Installer Plugin&lt;/name&gt;
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
+    &lt;parent&gt;
+        &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+        &lt;artifactId&gt;pluto&lt;/artifactId&gt;
+        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+    &lt;/parent&gt;
   
+    &lt;artifactId&gt;maven-pluto-plugin&lt;/artifactId&gt; 
+    &lt;packaging&gt;maven-plugin&lt;/packaging&gt;
+    &lt;name&gt;Maven Pluto Installer Plugin&lt;/name&gt;
+
   &lt;dependencies&gt;
     &lt;dependency&gt;
       &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;

Modified: portals/pluto/trunk/pluto-ant-tasks/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-ant-tasks/pom.xml?rev=775678&amp;r1=775677&amp;r2=775678&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-ant-tasks/pom.xml (original)
+++ portals/pluto/trunk/pluto-ant-tasks/pom.xml Sun May 17 15:46:11 2009
@@ -21,35 +21,34 @@
          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"&gt;
   
-  &lt;parent&gt;
-    &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-    &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-    &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
-    &lt;relativePath&gt;../parent&lt;/relativePath&gt;
-  &lt;/parent&gt;
-  &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
-  &lt;artifactId&gt;pluto-ant-tasks&lt;/artifactId&gt; 
-  &lt;packaging&gt;jar&lt;/packaging&gt;
-  &lt;name&gt;Apache Pluto Ant Tasks&lt;/name&gt; 
-  &lt;description&gt;The Pluto Ant Tasks are used to assemble, deploy, and publish portlets
to the Pluto Portal Driver.&lt;/description&gt;
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
+    &lt;parent&gt;
+        &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+        &lt;artifactId&gt;pluto&lt;/artifactId&gt;
+        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+    &lt;/parent&gt;
   
-  &lt;dependencies&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-      &lt;artifactId&gt;pluto-util&lt;/artifactId&gt;
-      &lt;version&gt;${pom.version}&lt;/version&gt;
-      &lt;scope&gt;compile&lt;/scope&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;ant&lt;/groupId&gt;
-      &lt;artifactId&gt;ant&lt;/artifactId&gt;
-      &lt;scope&gt;provided&lt;/scope&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;junit&lt;/groupId&gt;
-      &lt;artifactId&gt;junit&lt;/artifactId&gt;
-    &lt;/dependency&gt;
-  &lt;/dependencies&gt;
+    &lt;artifactId&gt;pluto-ant-tasks&lt;/artifactId&gt; 
+    &lt;name&gt;Apache Pluto Ant Tasks&lt;/name&gt; 
+    &lt;description&gt;The Pluto Ant Tasks are used to assemble, deploy, and publish portlets
to the Pluto Portal Driver.&lt;/description&gt;
+
+    &lt;dependencies&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+            &lt;artifactId&gt;pluto-util&lt;/artifactId&gt;
+            &lt;version&gt;${pom.version}&lt;/version&gt;
+            &lt;scope&gt;compile&lt;/scope&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;ant&lt;/groupId&gt;
+            &lt;artifactId&gt;ant&lt;/artifactId&gt;
+            &lt;scope&gt;provided&lt;/scope&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;junit&lt;/groupId&gt;
+            &lt;artifactId&gt;junit&lt;/artifactId&gt;
+        &lt;/dependency&gt;
+    &lt;/dependencies&gt;
 
   &lt;build&gt; 
     &lt;scriptSourceDirectory&gt;src/main/scripts&lt;/scriptSourceDirectory&gt; 

Modified: portals/pluto/trunk/pluto-container-api/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container-api/pom.xml?rev=775678&amp;r1=775677&amp;r2=775678&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container-api/pom.xml (original)
+++ portals/pluto/trunk/pluto-container-api/pom.xml Sun May 17 15:46:11 2009
@@ -21,16 +21,14 @@
 	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"&gt;
 	
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
 	&lt;parent&gt;
 		&lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
 		&lt;artifactId&gt;pluto&lt;/artifactId&gt;
 		&lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
-        &lt;relativePath&gt;../parent&lt;/relativePath&gt;
 	&lt;/parent&gt;
 
-	&lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
 	&lt;artifactId&gt;pluto-container-api&lt;/artifactId&gt;
-	&lt;packaging&gt;jar&lt;/packaging&gt;
 	&lt;name&gt;Apache Pluto Container API&lt;/name&gt;
 	
 	&lt;dependencies&gt;

Modified: portals/pluto/trunk/pluto-container-driver-api/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container-driver-api/pom.xml?rev=775678&amp;r1=775677&amp;r2=775678&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container-driver-api/pom.xml (original)
+++ portals/pluto/trunk/pluto-container-driver-api/pom.xml Sun May 17 15:46:11 2009
@@ -21,14 +21,13 @@
 	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"&gt;
 	
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
 	&lt;parent&gt;
 		&lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
 		&lt;artifactId&gt;pluto&lt;/artifactId&gt;
 		&lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
-        &lt;relativePath&gt;../parent&lt;/relativePath&gt;
 	&lt;/parent&gt;
 
-	&lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
 	&lt;artifactId&gt;pluto-container-driver-api&lt;/artifactId&gt;
 	&lt;packaging&gt;jar&lt;/packaging&gt;
 	&lt;name&gt;Apache Pluto Container Driver API&lt;/name&gt;

Modified: portals/pluto/trunk/pluto-container/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container/pom.xml?rev=775678&amp;r1=775677&amp;r2=775678&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container/pom.xml (original)
+++ portals/pluto/trunk/pluto-container/pom.xml Sun May 17 15:46:11 2009
@@ -21,16 +21,14 @@
          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"&gt;
   
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
         &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
-        &lt;relativePath&gt;../parent&lt;/relativePath&gt;
     &lt;/parent&gt;
   
-    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;artifactId&gt;pluto-container&lt;/artifactId&gt;
-    &lt;packaging&gt;jar&lt;/packaging&gt;
     &lt;name&gt;Apache Pluto Portlet Container&lt;/name&gt;
     &lt;description&gt;The Apache Pluto portlet container.&lt;/description&gt;
   

Modified: portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver-impl/pom.xml?rev=775678&amp;r1=775677&amp;r2=775678&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver-impl/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver-impl/pom.xml Sun May 17 15:46:11 2009
@@ -21,13 +21,13 @@
          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"&gt;
 
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
         &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
-        &lt;relativePath&gt;../parent&lt;/relativePath&gt;
     &lt;/parent&gt;
-    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
+
     &lt;artifactId&gt;pluto-portal-driver-impl&lt;/artifactId&gt;
     &lt;packaging&gt;jar&lt;/packaging&gt;
     &lt;name&gt;Apache Pluto Portal Driver Implementation Classes&lt;/name&gt;

Modified: portals/pluto/trunk/pluto-portal-driver/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver/pom.xml?rev=775678&amp;r1=775677&amp;r2=775678&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver/pom.xml Sun May 17 15:46:11 2009
@@ -21,13 +21,13 @@
          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"&gt;
 
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
         &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
-        &lt;relativePath&gt;../parent&lt;/relativePath&gt;
     &lt;/parent&gt;
-    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
+
     &lt;artifactId&gt;pluto-portal-driver&lt;/artifactId&gt;
     &lt;packaging&gt;jar&lt;/packaging&gt;
     &lt;name&gt;Apache Pluto Portal Driver&lt;/name&gt;

Modified: portals/pluto/trunk/pluto-portal/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/pom.xml?rev=775678&amp;r1=775677&amp;r2=775678&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal/pom.xml Sun May 17 15:46:11 2009
@@ -21,115 +21,100 @@
          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"&gt;
 
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
         &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
-        &lt;relativePath&gt;../parent&lt;/relativePath&gt;
     &lt;/parent&gt;
 
-    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;artifactId&gt;pluto-portal&lt;/artifactId&gt;
     &lt;packaging&gt;war&lt;/packaging&gt;
     &lt;name&gt;Apache Pluto Portal&lt;/name&gt;
 
-  &lt;dependencies&gt;
-    
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.slf4j&lt;/groupId&gt;
-      &lt;artifactId&gt;slf4j-jdk14&lt;/artifactId&gt;
-      &lt;scope&gt;compile&lt;/scope&gt;
-     &lt;/dependency&gt;
-    
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-      &lt;artifactId&gt;pluto-container&lt;/artifactId&gt;
-      &lt;version&gt;${pom.version}&lt;/version&gt;
-      &lt;exclusions&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-          &lt;artifactId&gt;pluto-container-api&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
-          &lt;artifactId&gt;jsp-api&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
-          &lt;artifactId&gt;servlet-api&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;org.apache.portals&lt;/groupId&gt;
-          &lt;artifactId&gt;portlet-api_2.0_spec&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;xml-apis&lt;/groupId&gt;
-          &lt;artifactId&gt;xml-apis&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;junit&lt;/groupId&gt;
-          &lt;artifactId&gt;junit&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-      &lt;/exclusions&gt;      
-	&lt;/dependency&gt;
-	
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-      &lt;artifactId&gt;pluto-portal-driver&lt;/artifactId&gt;
-      &lt;version&gt;${pom.version}&lt;/version&gt;
-      &lt;scope&gt;compile&lt;/scope&gt;
-      &lt;exclusions&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
-          &lt;artifactId&gt;jsp-api&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
-          &lt;artifactId&gt;servlet-api&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;xml-apis&lt;/groupId&gt;
-          &lt;artifactId&gt;xml-apis&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;junit&lt;/groupId&gt;
-          &lt;artifactId&gt;junit&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-      &lt;/exclusions&gt;
-    &lt;/dependency&gt;
-
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-      &lt;artifactId&gt;pluto-portal-driver-impl&lt;/artifactId&gt;
-      &lt;version&gt;${pom.version}&lt;/version&gt;
-      &lt;scope&gt;compile&lt;/scope&gt;
-      &lt;exclusions&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
-          &lt;artifactId&gt;jsp-api&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
-          &lt;artifactId&gt;servlet-api&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;xml-apis&lt;/groupId&gt;
-          &lt;artifactId&gt;xml-apis&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-        &lt;exclusion&gt;
-          &lt;groupId&gt;junit&lt;/groupId&gt;
-          &lt;artifactId&gt;junit&lt;/artifactId&gt;
-        &lt;/exclusion&gt;
-      &lt;/exclusions&gt;
-    &lt;/dependency&gt;
-
-    &lt;dependency&gt;
-      &lt;artifactId&gt;junit&lt;/artifactId&gt;
-      &lt;groupId&gt;junit&lt;/groupId&gt;
-    &lt;/dependency&gt;
-
-  &lt;/dependencies&gt;
+    &lt;dependencies&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+            &lt;artifactId&gt;pluto-container&lt;/artifactId&gt;
+            &lt;version&gt;${pom.version}&lt;/version&gt;
+            &lt;exclusions&gt;
+                &lt;exclusion&gt;
+                    &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+                    &lt;artifactId&gt;pluto-container-api&lt;/artifactId&gt;
+                &lt;/exclusion&gt;
+                &lt;exclusion&gt;
+                    &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
+                    &lt;artifactId&gt;jsp-api&lt;/artifactId&gt;
+                &lt;/exclusion&gt;
+                &lt;exclusion&gt;
+                    &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
+                    &lt;artifactId&gt;servlet-api&lt;/artifactId&gt;
+                &lt;/exclusion&gt;
+                &lt;exclusion&gt;
+                    &lt;groupId&gt;org.apache.portals&lt;/groupId&gt;
+                    &lt;artifactId&gt;portlet-api_2.0_spec&lt;/artifactId&gt;
+                &lt;/exclusion&gt;
+                &lt;exclusion&gt;
+                    &lt;groupId&gt;xml-apis&lt;/groupId&gt;
+                    &lt;artifactId&gt;xml-apis&lt;/artifactId&gt;
+                &lt;/exclusion&gt;
+            &lt;/exclusions&gt;      
+        &lt;/dependency&gt;
+
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+            &lt;artifactId&gt;pluto-portal-driver&lt;/artifactId&gt;
+            &lt;version&gt;${pom.version}&lt;/version&gt;
+            &lt;scope&gt;compile&lt;/scope&gt;
+            &lt;exclusions&gt;
+                &lt;exclusion&gt;
+                    &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
+                    &lt;artifactId&gt;jsp-api&lt;/artifactId&gt;
+                &lt;/exclusion&gt;
+                &lt;exclusion&gt;
+                    &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
+                    &lt;artifactId&gt;servlet-api&lt;/artifactId&gt;
+                &lt;/exclusion&gt;
+                &lt;exclusion&gt;
+                    &lt;groupId&gt;xml-apis&lt;/groupId&gt;
+                    &lt;artifactId&gt;xml-apis&lt;/artifactId&gt;
+                &lt;/exclusion&gt;
+            &lt;/exclusions&gt;
+        &lt;/dependency&gt;
+
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+            &lt;artifactId&gt;pluto-portal-driver-impl&lt;/artifactId&gt;
+            &lt;version&gt;${pom.version}&lt;/version&gt;
+            &lt;scope&gt;compile&lt;/scope&gt;
+            &lt;exclusions&gt;
+                &lt;exclusion&gt;
+                    &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
+                    &lt;artifactId&gt;jsp-api&lt;/artifactId&gt;
+                &lt;/exclusion&gt;
+                &lt;exclusion&gt;
+                    &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
+                    &lt;artifactId&gt;servlet-api&lt;/artifactId&gt;
+                &lt;/exclusion&gt;
+                &lt;exclusion&gt;
+                    &lt;groupId&gt;xml-apis&lt;/groupId&gt;
+                    &lt;artifactId&gt;xml-apis&lt;/artifactId&gt;
+                &lt;/exclusion&gt;
+            &lt;/exclusions&gt;
+        &lt;/dependency&gt;
+
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.slf4j&lt;/groupId&gt;
+            &lt;artifactId&gt;slf4j-jdk14&lt;/artifactId&gt;
+            &lt;scope&gt;compile&lt;/scope&gt;
+        &lt;/dependency&gt;
+
+        &lt;dependency&gt;
+            &lt;artifactId&gt;junit&lt;/artifactId&gt;
+            &lt;groupId&gt;junit&lt;/groupId&gt;
+        &lt;/dependency&gt;
 
+    &lt;/dependencies&gt;
 
     &lt;build&gt;
         &lt;finalName&gt;pluto-portal&lt;/finalName&gt;

Modified: portals/pluto/trunk/pluto-taglib/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-taglib/pom.xml?rev=775678&amp;r1=775677&amp;r2=775678&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-taglib/pom.xml (original)
+++ portals/pluto/trunk/pluto-taglib/pom.xml Sun May 17 15:46:11 2009
@@ -21,13 +21,13 @@
          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"&gt;
 
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;parent&gt;
         &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
         &lt;artifactId&gt;pluto&lt;/artifactId&gt;
         &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
-        &lt;relativePath&gt;../parent&lt;/relativePath&gt;
     &lt;/parent&gt;
-    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
+
     &lt;artifactId&gt;pluto-taglib&lt;/artifactId&gt;
     &lt;packaging&gt;jar&lt;/packaging&gt;
     &lt;name&gt;Apache Pluto Portlet Tag Library&lt;/name&gt;

Modified: portals/pluto/trunk/pluto-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-testsuite/pom.xml?rev=775678&amp;r1=775677&amp;r2=775678&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-testsuite/pom.xml (original)
+++ portals/pluto/trunk/pluto-testsuite/pom.xml Sun May 17 15:46:11 2009
@@ -21,65 +21,59 @@
          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"&gt;
   
-  &lt;parent&gt;
-    &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-    &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-    &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
-    &lt;relativePath&gt;../parent&lt;/relativePath&gt;
-  &lt;/parent&gt;
-  &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
-  &lt;artifactId&gt;pluto-testsuite&lt;/artifactId&gt;
-  &lt;packaging&gt;war&lt;/packaging&gt;
-  &lt;name&gt;Apache Pluto Testsuite Portlet&lt;/name&gt;
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
+    &lt;parent&gt;
+        &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+        &lt;artifactId&gt;pluto&lt;/artifactId&gt;
+        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+    &lt;/parent&gt;
+    
+    &lt;artifactId&gt;pluto-testsuite&lt;/artifactId&gt;
+    &lt;packaging&gt;war&lt;/packaging&gt;
+    &lt;name&gt;Apache Pluto Testsuite Portlet&lt;/name&gt;
   
-  &lt;dependencies&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.portals&lt;/groupId&gt;
-      &lt;artifactId&gt;portlet-api_2.0_spec&lt;/artifactId&gt;
-      &lt;scope&gt;provided&lt;/scope&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
-      &lt;artifactId&gt;servlet-api&lt;/artifactId&gt;
-      &lt;scope&gt;provided&lt;/scope&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
-      &lt;artifactId&gt;jstl&lt;/artifactId&gt;
-      &lt;scope&gt;compile&lt;/scope&gt;
-      &lt;exclusions&gt;
-          &lt;exclusion&gt;
+    &lt;dependencies&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.apache.portals&lt;/groupId&gt;
+            &lt;artifactId&gt;portlet-api_2.0_spec&lt;/artifactId&gt;
+            &lt;scope&gt;provided&lt;/scope&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
+            &lt;artifactId&gt;servlet-api&lt;/artifactId&gt;
+            &lt;scope&gt;provided&lt;/scope&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
             &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
-            &lt;artifactId&gt;jsp-api&lt;/artifactId&gt;
-          &lt;/exclusion&gt;
-      &lt;/exclusions&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;commons-digester&lt;/groupId&gt;
-      &lt;artifactId&gt;commons-digester&lt;/artifactId&gt;
-      &lt;scope&gt;compile&lt;/scope&gt;
-      &lt;exclusions&gt;
-          &lt;exclusion&gt;
-            &lt;groupId&gt;commons-logging&lt;/groupId&gt;
-            &lt;artifactId&gt;commons-logging&lt;/artifactId&gt;
-          &lt;/exclusion&gt;
-      &lt;/exclusions&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.slf4j&lt;/groupId&gt;
-      &lt;artifactId&gt;slf4j-jdk14&lt;/artifactId&gt;
-      &lt;scope&gt;compile&lt;/scope&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;taglibs&lt;/groupId&gt;
-      &lt;artifactId&gt;standard&lt;/artifactId&gt;
-      &lt;scope&gt;compile&lt;/scope&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;junit&lt;/groupId&gt;
-      &lt;artifactId&gt;junit&lt;/artifactId&gt;
-    &lt;/dependency&gt;
-  &lt;/dependencies&gt;
+            &lt;artifactId&gt;jstl&lt;/artifactId&gt;
+            &lt;scope&gt;compile&lt;/scope&gt;
+            &lt;exclusions&gt;
+                &lt;exclusion&gt;
+                    &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
+                    &lt;artifactId&gt;jsp-api&lt;/artifactId&gt;
+                &lt;/exclusion&gt;
+            &lt;/exclusions&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;commons-digester&lt;/groupId&gt;
+            &lt;artifactId&gt;commons-digester&lt;/artifactId&gt;
+            &lt;scope&gt;compile&lt;/scope&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.slf4j&lt;/groupId&gt;
+            &lt;artifactId&gt;slf4j-jdk14&lt;/artifactId&gt;
+            &lt;scope&gt;compile&lt;/scope&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;taglibs&lt;/groupId&gt;
+            &lt;artifactId&gt;standard&lt;/artifactId&gt;
+            &lt;scope&gt;compile&lt;/scope&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;junit&lt;/groupId&gt;
+            &lt;artifactId&gt;junit&lt;/artifactId&gt;
+        &lt;/dependency&gt;
+    &lt;/dependencies&gt;
   
   &lt;!-- Build configuration --&gt;
   &lt;build&gt;
@@ -128,16 +122,6 @@
           &lt;/execution&gt;
         &lt;/executions&gt;
       &lt;/plugin&gt;
-      
-      &lt;plugin&gt;
-      	&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-      	&lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
-      	&lt;!-- best lock down version of the plugin too --&gt;
-      	&lt;configuration&gt;
-      		&lt;source&gt;1.5&lt;/source&gt;
-      		&lt;target&gt;1.5&lt;/target&gt;
-      	&lt;/configuration&gt;
-      &lt;/plugin&gt;
     &lt;/plugins&gt;
   &lt;/build&gt;
   




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775676 - in /portals/pluto/trunk/pluto-util: pom.xml src/resources/</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090517153620.A165323888DD@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090517153620-A165323888DD@eris-apache-org%3e</id>
<updated>2009-05-17T15:36:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Sun May 17 15:36:20 2009
New Revision: 775676

URL: http://svn.apache.org/viewvc?rev=775676&amp;view=rev
Log:
Remove obsolete resources and format pom.

Removed:
    portals/pluto/trunk/pluto-util/src/resources/
Modified:
    portals/pluto/trunk/pluto-util/pom.xml

Modified: portals/pluto/trunk/pluto-util/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-util/pom.xml?rev=775676&amp;r1=775675&amp;r2=775676&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-util/pom.xml (original)
+++ portals/pluto/trunk/pluto-util/pom.xml Sun May 17 15:36:20 2009
@@ -18,66 +18,57 @@
 --&gt;
 &lt;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"&gt;
   
-  &lt;parent&gt;
-    &lt;artifactId&gt;pluto&lt;/artifactId&gt;
-    &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-    &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
-    &lt;relativePath&gt;../parent&lt;/relativePath&gt;
-  &lt;/parent&gt;
-  &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
-  &lt;artifactId&gt;pluto-util&lt;/artifactId&gt;
-  &lt;name&gt;Apache Pluto Utilities&lt;/name&gt;
+    &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
+    &lt;parent&gt;
+        &lt;artifactId&gt;pluto&lt;/artifactId&gt;
+        &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+        &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
+    &lt;/parent&gt;
+    &lt;artifactId&gt;pluto-util&lt;/artifactId&gt;
+    &lt;name&gt;Apache Pluto Utilities&lt;/name&gt;
 
-  &lt;!-- The dependencies for the ApplicationServerHook project
-       are those which need to be installed!
-  --&gt;
-  &lt;dependencies&gt;
+    &lt;!-- The dependencies for the ApplicationServerHook project
+         are those which need to be installed!
+    --&gt;
+    &lt;dependencies&gt;
 
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-      &lt;artifactId&gt;pluto-container-api&lt;/artifactId&gt;
-      &lt;version&gt;${pom.version}&lt;/version&gt;
-      &lt;scope&gt;compile&lt;/scope&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-      &lt;artifactId&gt;pluto-container&lt;/artifactId&gt;
-      &lt;version&gt;${pom.version}&lt;/version&gt;
-      &lt;scope&gt;compile&lt;/scope&gt;
-    &lt;/dependency&gt;
-        
-    &lt;dependency&gt;
-      &lt;groupId&gt;commons-cli&lt;/groupId&gt;
-      &lt;artifactId&gt;commons-cli&lt;/artifactId&gt;
-	  &lt;exclusions&gt;
-	     &lt;exclusion&gt;
-	       &lt;groupId&gt;junit&lt;/groupId&gt;
-	       &lt;artifactId&gt;junit&lt;/artifactId&gt;
-	     &lt;/exclusion&gt;
-         &lt;exclusion&gt;
-           &lt;groupId&gt;commons-logging&lt;/groupId&gt;
-           &lt;artifactId&gt;commons-logging&lt;/artifactId&gt;
-         &lt;/exclusion&gt;
-       &lt;/exclusions&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;commons-io&lt;/groupId&gt;
-      &lt;artifactId&gt;commons-io&lt;/artifactId&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.slf4j&lt;/groupId&gt;
-      &lt;artifactId&gt;slf4j-jdk14&lt;/artifactId&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;junit&lt;/groupId&gt;
-      &lt;artifactId&gt;junit&lt;/artifactId&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;xmlunit&lt;/groupId&gt;
-      &lt;artifactId&gt;xmlunit&lt;/artifactId&gt;
-    &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+            &lt;artifactId&gt;pluto-container-api&lt;/artifactId&gt;
+            &lt;version&gt;${pom.version}&lt;/version&gt;
+            &lt;scope&gt;compile&lt;/scope&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
+            &lt;artifactId&gt;pluto-container&lt;/artifactId&gt;
+            &lt;version&gt;${pom.version}&lt;/version&gt;
+            &lt;scope&gt;compile&lt;/scope&gt;
+        &lt;/dependency&gt;
+
+        &lt;dependency&gt;
+            &lt;groupId&gt;commons-cli&lt;/groupId&gt;
+            &lt;artifactId&gt;commons-cli&lt;/artifactId&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;commons-io&lt;/groupId&gt;
+            &lt;artifactId&gt;commons-io&lt;/artifactId&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;org.slf4j&lt;/groupId&gt;
+            &lt;artifactId&gt;slf4j-jdk14&lt;/artifactId&gt;
+        &lt;/dependency&gt;
+
+        &lt;dependency&gt;
+            &lt;groupId&gt;junit&lt;/groupId&gt;
+            &lt;artifactId&gt;junit&lt;/artifactId&gt;
+        &lt;/dependency&gt;
+        &lt;dependency&gt;
+            &lt;groupId&gt;xmlunit&lt;/groupId&gt;
+            &lt;artifactId&gt;xmlunit&lt;/artifactId&gt;
+        &lt;/dependency&gt;
+    
+    &lt;/dependencies&gt;
     
-  &lt;/dependencies&gt;
     &lt;!-- Don't create distribution artifacts --&gt;
     &lt;profiles&gt;
         &lt;profile&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775675 - in /portals/pluto/trunk: maven-pluto-plugin/src/site/ pluto-ant-tasks/src/site/ pluto-container-api/src/site/ pluto-container/src/site/ pluto-portal-driver-impl/src/site/ pluto-portal-driver/src/site/ pluto-portal/src/site/ pluto-...</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090517153203.7DEC723888DB@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090517153203-7DEC723888DB@eris-apache-org%3e</id>
<updated>2009-05-17T15:32:03Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Sun May 17 15:32:02 2009
New Revision: 775675

URL: http://svn.apache.org/viewvc?rev=775675&amp;view=rev
Log:
Remove site and site skin as the docs are now in the site module. Start cleaning up poms for
the release.

Removed:
    portals/pluto/trunk/maven-pluto-plugin/src/site/
    portals/pluto/trunk/pluto-ant-tasks/src/site/
    portals/pluto/trunk/pluto-container-api/src/site/
    portals/pluto/trunk/pluto-container/src/site/
    portals/pluto/trunk/pluto-portal-driver-impl/src/site/
    portals/pluto/trunk/pluto-portal-driver/src/site/
    portals/pluto/trunk/pluto-portal/src/site/
    portals/pluto/trunk/pluto-testsuite/src/site/
    portals/pluto/trunk/pluto-util/src/site/



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775674 - in /portals/pluto/trunk: ./ maven-pluto-plugin/ pluto-ant-tasks/ pluto-container-api/ pluto-container-driver-api/ pluto-container/ pluto-portal-driver-impl/ pluto-portal-driver/ pluto-portal/ pluto-site-skin/ pluto-site/ pluto-tag...</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090517152950.59172238897C@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090517152950-59172238897C@eris-apache-org%3e</id>
<updated>2009-05-17T15:29:49Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Sun May 17 15:29:49 2009
New Revision: 775674

URL: http://svn.apache.org/viewvc?rev=775674&amp;view=rev
Log:
Remove site and site skin as the docs are now in the site module. Start cleaning up poms for
the release.

Removed:
    portals/pluto/trunk/pluto-site/
    portals/pluto/trunk/pluto-site-skin/
    portals/pluto/trunk/src/
Modified:
    portals/pluto/trunk/maven-pluto-plugin/pom.xml
    portals/pluto/trunk/pluto-ant-tasks/pom.xml
    portals/pluto/trunk/pluto-container-api/pom.xml
    portals/pluto/trunk/pluto-container-driver-api/pom.xml
    portals/pluto/trunk/pluto-container/pom.xml
    portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
    portals/pluto/trunk/pluto-portal-driver/pom.xml
    portals/pluto/trunk/pluto-portal/pom.xml
    portals/pluto/trunk/pluto-taglib/pom.xml
    portals/pluto/trunk/pluto-testsuite/pom.xml
    portals/pluto/trunk/pluto-util/pom.xml
    portals/pluto/trunk/pom.xml

Modified: portals/pluto/trunk/maven-pluto-plugin/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/maven-pluto-plugin/pom.xml?rev=775674&amp;r1=775673&amp;r2=775674&amp;view=diff
==============================================================================
--- portals/pluto/trunk/maven-pluto-plugin/pom.xml (original)
+++ portals/pluto/trunk/maven-pluto-plugin/pom.xml Sun May 17 15:29:49 2009
@@ -89,13 +89,26 @@
           &lt;goalPrefix&gt;pluto2&lt;/goalPrefix&gt;
         &lt;/configuration&gt;
       &lt;/plugin&gt;
-      &lt;plugin&gt;
-        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-        &lt;artifactId&gt;maven-remote-resources-plugin&lt;/artifactId&gt;
-      &lt;/plugin&gt;
     &lt;/plugins&gt;
   &lt;/build&gt;
-  
+
+    &lt;!-- Don't create distribution artifacts --&gt;
+    &lt;profiles&gt;
+        &lt;profile&gt;
+            &lt;id&gt;apache-release&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
+                        &lt;configuration&gt;
+                            &lt;skipAssembly&gt;true&lt;/skipAssembly&gt;
+                        &lt;/configuration&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+    &lt;/profiles&gt;
 &lt;/project&gt;
 
 

Modified: portals/pluto/trunk/pluto-ant-tasks/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-ant-tasks/pom.xml?rev=775674&amp;r1=775673&amp;r2=775674&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-ant-tasks/pom.xml (original)
+++ portals/pluto/trunk/pluto-ant-tasks/pom.xml Sun May 17 15:29:49 2009
@@ -72,12 +72,6 @@
           &lt;/executions&gt;
         &lt;/plugin&gt;
       &lt;plugin&gt;
-        &lt;artifactId&gt;maven-site-plugin&lt;/artifactId&gt;
-        &lt;configuration&gt;
-          &lt;resourcesDirectory&gt;${basedir}/../pluto-site/src/site/resources&lt;/resourcesDirectory&gt;
-        &lt;/configuration&gt;
-      &lt;/plugin&gt;
-      &lt;plugin&gt;
         &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
         &lt;configuration&gt;
           &lt;descriptor&gt;src/assemble/bin.xml&lt;/descriptor&gt;

Modified: portals/pluto/trunk/pluto-container-api/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container-api/pom.xml?rev=775674&amp;r1=775673&amp;r2=775674&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container-api/pom.xml (original)
+++ portals/pluto/trunk/pluto-container-api/pom.xml Sun May 17 15:29:49 2009
@@ -55,12 +55,21 @@
     
 	&lt;/dependencies&gt;
 
-	&lt;build&gt;
-		&lt;plugins&gt;
-            &lt;plugin&gt;
-                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-                &lt;artifactId&gt;maven-remote-resources-plugin&lt;/artifactId&gt;
-            &lt;/plugin&gt;
-		&lt;/plugins&gt;
-	&lt;/build&gt;
+    &lt;!-- Don't create distribution artifacts --&gt;
+    &lt;profiles&gt;
+        &lt;profile&gt;
+            &lt;id&gt;apache-release&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
+                        &lt;configuration&gt;
+                            &lt;skipAssembly&gt;true&lt;/skipAssembly&gt;
+                        &lt;/configuration&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+    &lt;/profiles&gt;
 &lt;/project&gt;

Modified: portals/pluto/trunk/pluto-container-driver-api/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container-driver-api/pom.xml?rev=775674&amp;r1=775673&amp;r2=775674&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container-driver-api/pom.xml (original)
+++ portals/pluto/trunk/pluto-container-driver-api/pom.xml Sun May 17 15:29:49 2009
@@ -61,12 +61,21 @@
         &lt;/dependency&gt;
 	&lt;/dependencies&gt;
 
-	&lt;build&gt;
-		&lt;plugins&gt;
-            &lt;plugin&gt;
-                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-                &lt;artifactId&gt;maven-remote-resources-plugin&lt;/artifactId&gt;
-            &lt;/plugin&gt;
-		&lt;/plugins&gt;
-	&lt;/build&gt;
+    &lt;!-- Don't create distribution artifacts --&gt;
+    &lt;profiles&gt;
+        &lt;profile&gt;
+            &lt;id&gt;apache-release&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
+                        &lt;configuration&gt;
+                            &lt;skipAssembly&gt;true&lt;/skipAssembly&gt;
+                        &lt;/configuration&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+    &lt;/profiles&gt;
 &lt;/project&gt;

Modified: portals/pluto/trunk/pluto-container/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container/pom.xml?rev=775674&amp;r1=775673&amp;r2=775674&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-container/pom.xml (original)
+++ portals/pluto/trunk/pluto-container/pom.xml Sun May 17 15:29:49 2009
@@ -140,13 +140,24 @@
                   &lt;/excludes&gt;
               &lt;/configuration&gt;
           &lt;/plugin&gt;
-      &lt;!--plugin&gt;
-        &lt;artifactId&gt;maven-site-plugin&lt;/artifactId&gt;
-        &lt;configuration&gt;
-          &lt;resourcesDirectory&gt;${basedir}/../pluto-site/src/site/resources&lt;/resourcesDirectory&gt;
-        &lt;/configuration&gt;
-      &lt;/plugin--&gt;
         &lt;/plugins&gt;
     &lt;/build&gt;
 
+    &lt;!-- Don't create distribution artifacts --&gt;
+    &lt;profiles&gt;
+        &lt;profile&gt;
+            &lt;id&gt;apache-release&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
+                        &lt;configuration&gt;
+                            &lt;skipAssembly&gt;true&lt;/skipAssembly&gt;
+                        &lt;/configuration&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+    &lt;/profiles&gt;
 &lt;/project&gt;
\ No newline at end of file

Modified: portals/pluto/trunk/pluto-portal-driver-impl/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver-impl/pom.xml?rev=775674&amp;r1=775673&amp;r2=775674&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver-impl/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver-impl/pom.xml Sun May 17 15:29:49 2009
@@ -137,20 +137,23 @@
         &lt;/dependency&gt;
     &lt;/dependencies&gt;
 
-    &lt;build&gt;
-        &lt;plugins&gt;
-        	&lt;plugin&gt;
-        		&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-        		&lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
-        		&lt;!-- best lock down version of the plugin too --&gt;
-        		&lt;configuration&gt;
-        			&lt;source&gt;1.5&lt;/source&gt;
-        			&lt;target&gt;1.5&lt;/target&gt;
-        		&lt;/configuration&gt;
-        	&lt;/plugin&gt;
-        &lt;/plugins&gt;
-    &lt;/build&gt;
-
+    &lt;!-- Don't create distribution artifacts --&gt;
+    &lt;profiles&gt;
+        &lt;profile&gt;
+            &lt;id&gt;apache-release&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
+                        &lt;configuration&gt;
+                            &lt;skipAssembly&gt;true&lt;/skipAssembly&gt;
+                        &lt;/configuration&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+    &lt;/profiles&gt;
 &lt;/project&gt;
 
 

Modified: portals/pluto/trunk/pluto-portal-driver/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver/pom.xml?rev=775674&amp;r1=775673&amp;r2=775674&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal-driver/pom.xml Sun May 17 15:29:49 2009
@@ -151,17 +151,6 @@
     &lt;/dependencies&gt;
 
     &lt;build&gt;
-        &lt;plugins&gt;
-            &lt;plugin&gt;
-            	&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-            	&lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
-            	&lt;!-- best lock down version of the plugin too --&gt;
-            	&lt;configuration&gt;
-            		&lt;source&gt;1.5&lt;/source&gt;
-            		&lt;target&gt;1.5&lt;/target&gt;
-            	&lt;/configuration&gt;
-            &lt;/plugin&gt;
-        &lt;/plugins&gt;
         &lt;resources&gt;
              &lt;resource&gt;
                  &lt;directory&gt;src/main/resources&lt;/directory&gt;
@@ -170,6 +159,23 @@
        &lt;/resources&gt;        
     &lt;/build&gt;
 
+    &lt;!-- Don't create distribution artifacts --&gt;
+    &lt;profiles&gt;
+        &lt;profile&gt;
+            &lt;id&gt;apache-release&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
+                        &lt;configuration&gt;
+                            &lt;skipAssembly&gt;true&lt;/skipAssembly&gt;
+                        &lt;/configuration&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+    &lt;/profiles&gt;
 &lt;/project&gt;
 
 

Modified: portals/pluto/trunk/pluto-portal/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/pom.xml?rev=775674&amp;r1=775673&amp;r2=775674&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/pom.xml (original)
+++ portals/pluto/trunk/pluto-portal/pom.xml Sun May 17 15:29:49 2009
@@ -134,35 +134,34 @@
     &lt;build&gt;
         &lt;finalName&gt;pluto-portal&lt;/finalName&gt;
 
-    &lt;plugins&gt;
-      &lt;plugin&gt;
-        &lt;artifactId&gt;maven-war-plugin&lt;/artifactId&gt;
-        &lt;configuration&gt;
-          &lt;webResources&gt;
-            &lt;resource&gt;
-              &lt;filtering&gt;true&lt;/filtering&gt;
-              &lt;directory&gt;${pom.basedir}/src/main/resources&lt;/directory&gt;
-              &lt;includes&gt;
-                &lt;include&gt;pluto-portal-driver-config.xml&lt;/include&gt;
-              &lt;/includes&gt;
-              &lt;!-- &lt;targetPath&gt; requires version 2.0.2 of maven-war-plugin --&gt;
-              &lt;targetPath&gt;WEB-INF&lt;/targetPath&gt;
-            &lt;/resource&gt;
-          &lt;/webResources&gt;
-        &lt;/configuration&gt;
-      &lt;/plugin&gt;
-      &lt;plugin&gt;
-        &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
-        &lt;version&gt;1.1&lt;/version&gt;
-        &lt;configuration&gt;
-          &lt;tasks&gt;
-            &lt;get src="http://archive.apache.org/dist/tomcat/tomcat-5/archive/v5.5.9/bin/jakarta-tomcat-5.5.9.tar.gz"
dest="target/tomcat.tar.gz" /&gt;
-            &lt;gunzip src="target/tomcat.tar.gz" /&gt;
-            &lt;untar src="target/tomcat.tar" /&gt;
-          &lt;/tasks&gt;
-        &lt;/configuration&gt;
-      &lt;/plugin&gt;
-
+        &lt;plugins&gt;
+            &lt;plugin&gt;
+                &lt;artifactId&gt;maven-war-plugin&lt;/artifactId&gt;
+                &lt;version&gt;2.1-beta-1&lt;/version&gt;
+                &lt;configuration&gt;
+                &lt;webResources&gt;
+                    &lt;resource&gt;
+                        &lt;filtering&gt;true&lt;/filtering&gt;
+                        &lt;directory&gt;${pom.basedir}/src/main/resources&lt;/directory&gt;
+                        &lt;includes&gt;
+                            &lt;include&gt;pluto-portal-driver-config.xml&lt;/include&gt;
+                        &lt;/includes&gt;
+                        &lt;targetPath&gt;WEB-INF&lt;/targetPath&gt;
+                    &lt;/resource&gt;
+                &lt;/webResources&gt;
+            &lt;/configuration&gt;
+        &lt;/plugin&gt;
+        &lt;plugin&gt;
+            &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt;
+            &lt;version&gt;1.1&lt;/version&gt;
+            &lt;configuration&gt;
+                &lt;tasks&gt;
+                    &lt;get src="http://archive.apache.org/dist/tomcat/tomcat-5/archive/v5.5.9/bin/jakarta-tomcat-5.5.9.tar.gz"
dest="target/tomcat.tar.gz" /&gt;
+                    &lt;gunzip src="target/tomcat.tar.gz" /&gt;
+                    &lt;untar src="target/tomcat.tar" /&gt;
+                &lt;/tasks&gt;
+            &lt;/configuration&gt;
+        &lt;/plugin&gt;
         &lt;plugin&gt;
           &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
           &lt;artifactId&gt;ianal-maven-plugin&lt;/artifactId&gt;
@@ -199,15 +198,27 @@
           &lt;/executions&gt;
       &lt;/plugin&gt;
 
-      &lt;plugin&gt;
-        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-        &lt;artifactId&gt;maven-remote-resources-plugin&lt;/artifactId&gt;
-      &lt;/plugin&gt;
-
-    &lt;/plugins&gt;
+        &lt;/plugins&gt;
 
     &lt;/build&gt;
 
+    &lt;!-- Don't create distribution artifacts --&gt;
+    &lt;profiles&gt;
+        &lt;profile&gt;
+            &lt;id&gt;apache-release&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
+                        &lt;configuration&gt;
+                            &lt;skipAssembly&gt;true&lt;/skipAssembly&gt;
+                        &lt;/configuration&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+    &lt;/profiles&gt;
 &lt;/project&gt;
 
 

Modified: portals/pluto/trunk/pluto-taglib/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-taglib/pom.xml?rev=775674&amp;r1=775673&amp;r2=775674&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-taglib/pom.xml (original)
+++ portals/pluto/trunk/pluto-taglib/pom.xml Sun May 17 15:29:49 2009
@@ -56,17 +56,21 @@
         &lt;/dependency&gt;
     &lt;/dependencies&gt;
 
-
-    &lt;build&gt;
-        &lt;plugins&gt;
-            &lt;plugin&gt;
-				&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-				&lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
-				&lt;configuration&gt;
-				&lt;source&gt;1.5&lt;/source&gt;
-				&lt;target&gt;1.5&lt;/target&gt;
-				&lt;/configuration&gt;
-			  &lt;/plugin&gt;
-        &lt;/plugins&gt;
-    &lt;/build&gt;
+    &lt;!-- Don't create distribution artifacts --&gt;
+    &lt;profiles&gt;
+        &lt;profile&gt;
+            &lt;id&gt;apache-release&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
+                        &lt;configuration&gt;
+                            &lt;skipAssembly&gt;true&lt;/skipAssembly&gt;
+                        &lt;/configuration&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+    &lt;/profiles&gt;
 &lt;/project&gt;

Modified: portals/pluto/trunk/pluto-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-testsuite/pom.xml?rev=775674&amp;r1=775673&amp;r2=775674&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-testsuite/pom.xml (original)
+++ portals/pluto/trunk/pluto-testsuite/pom.xml Sun May 17 15:29:49 2009
@@ -216,7 +216,22 @@
         &lt;/plugins&gt;
       &lt;/build&gt;
     &lt;/profile&gt;
-  &lt;/profiles&gt;
+    &lt;!-- Don't create distribution artifacts --&gt;
+        &lt;profile&gt;
+            &lt;id&gt;apache-release&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
+                        &lt;configuration&gt;
+                            &lt;skipAssembly&gt;true&lt;/skipAssembly&gt;
+                        &lt;/configuration&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+    &lt;/profiles&gt;
   
 &lt;/project&gt;
 

Modified: portals/pluto/trunk/pluto-util/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-util/pom.xml?rev=775674&amp;r1=775673&amp;r2=775674&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pluto-util/pom.xml (original)
+++ portals/pluto/trunk/pluto-util/pom.xml Sun May 17 15:29:49 2009
@@ -78,18 +78,21 @@
     &lt;/dependency&gt;
     
   &lt;/dependencies&gt;
-
-  &lt;reporting&gt;
-    &lt;plugins&gt;
-      &lt;plugin&gt;
-        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-        &lt;artifactId&gt;maven-project-info-reports-plugin&lt;/artifactId&gt;
-      &lt;/plugin&gt;
-      &lt;plugin&gt;
-        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-        &lt;artifactId&gt;maven-remote-resources-plugin&lt;/artifactId&gt;
-      &lt;/plugin&gt;
-    &lt;/plugins&gt;
-  &lt;/reporting&gt;
-  
+    &lt;!-- Don't create distribution artifacts --&gt;
+    &lt;profiles&gt;
+        &lt;profile&gt;
+            &lt;id&gt;apache-release&lt;/id&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                        &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt;
+                        &lt;configuration&gt;
+                            &lt;skipAssembly&gt;true&lt;/skipAssembly&gt;
+                        &lt;/configuration&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;
+            &lt;/build&gt;
+        &lt;/profile&gt;
+    &lt;/profiles&gt;
 &lt;/project&gt;

Modified: portals/pluto/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pom.xml?rev=775674&amp;r1=775673&amp;r2=775674&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pom.xml (original)
+++ portals/pluto/trunk/pom.xml Sun May 17 15:29:49 2009
@@ -218,26 +218,12 @@
         &lt;/contributor&gt;
     &lt;/contributors&gt;
 
-    &lt;licenses&gt;
-        &lt;license&gt;
-            &lt;name&gt;The Apache Software License, Version 2.0&lt;/name&gt;
-            &lt;url&gt;http://www.apache.org/licenses/LICENSE-2.0.txt&lt;/url&gt;
-            &lt;distribution&gt;repo&lt;/distribution&gt;
-        &lt;/license&gt;
-    &lt;/licenses&gt;
-
     &lt;scm&gt;
         &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/portals/pluto/trunk&lt;/connection&gt;
         &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/portals/pluto/trunk&lt;/developerConnection&gt;
         &lt;url&gt;http://svn.apache.org/viewcvs.cgi/portals/pluto/trunk&lt;/url&gt;
     &lt;/scm&gt;
 
-    &lt;organization&gt;
-        &lt;name&gt;The Apache Software Foundation&lt;/name&gt;
-        &lt;url&gt;http://www.apache.org/&lt;/url&gt;
-    &lt;/organization&gt;
-
-
     &lt;!-- Dependency Version Properties ======================================= --&gt;
 
     &lt;!--
@@ -552,9 +538,5 @@
         &lt;module&gt;pluto-util&lt;/module&gt;
         &lt;module&gt;maven-pluto-plugin&lt;/module&gt;
         &lt;module&gt;pluto-ant-tasks&lt;/module&gt;
-
-        &lt;!-- Pluto Documentations --&gt;
-        &lt;!--module&gt;pluto-site&lt;/module--&gt;
-        &lt;module&gt;pluto-site-skin&lt;/module&gt;
     &lt;/modules&gt;
 &lt;/project&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775052 - /portals/pluto/trunk/pom.xml</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090515074336.906D42388895@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090515074336-906D42388895@eris-apache-org%3e</id>
<updated>2009-05-15T07:43:36Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Fri May 15 07:43:36 2009
New Revision: 775052

URL: http://svn.apache.org/viewvc?rev=775052&amp;view=rev
Log:
Remove stuff that is already inherited from parent apache parent pom.

Modified:
    portals/pluto/trunk/pom.xml

Modified: portals/pluto/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pom.xml?rev=775052&amp;r1=775051&amp;r2=775052&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pom.xml (original)
+++ portals/pluto/trunk/pom.xml Fri May 15 07:43:36 2009
@@ -487,43 +487,6 @@
             &lt;plugins&gt;
                 &lt;plugin&gt;
                     &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-                    &lt;artifactId&gt;maven-release-plugin&lt;/artifactId&gt;
-                    &lt;version&gt;2.0-beta-8&lt;/version&gt;
-                &lt;/plugin&gt;
-                &lt;plugin&gt;
-                    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-                    &lt;artifactId&gt;maven-gpg-plugin&lt;/artifactId&gt;
-                    &lt;version&gt;1.0-alpha-4&lt;/version&gt;
-                &lt;/plugin&gt;
-                &lt;plugin&gt;
-                    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-                    &lt;artifactId&gt;maven-site-plugin&lt;/artifactId&gt;
-                    &lt;version&gt;2.0-beta-6&lt;/version&gt;
-                &lt;/plugin&gt;
-                &lt;plugin&gt;
-                    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-                    &lt;artifactId&gt;maven-remote-resources-plugin&lt;/artifactId&gt;
-                    &lt;version&gt;1.0-alpha-5&lt;/version&gt;
-                    &lt;executions&gt;
-                        &lt;execution&gt;
-                            &lt;goals&gt; 
-                                &lt;goal&gt;process&lt;/goal&gt;
-                            &lt;/goals&gt;
-                            &lt;configuration&gt;
-                                &lt;supplementalModels&gt;
-                                    &lt;supplementalModel&gt;
-                                        ${project.basedir}/../pluto-site/src/main/appended-resources/supplemental-models.xml
-                                    &lt;/supplementalModel&gt;
-                                &lt;/supplementalModels&gt;
-                                &lt;resourceBundles&gt;
-                                    &lt;resourceBundle&gt;org.apache:apache-jar-resource-bundle:1.2&lt;/resourceBundle&gt;
-                                &lt;/resourceBundles&gt;
-                            &lt;/configuration&gt;
-                        &lt;/execution&gt;
-                    &lt;/executions&gt;
-                &lt;/plugin&gt;
-                &lt;plugin&gt;
-                    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
                     &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
                     &lt;version&gt;2.0.2&lt;/version&gt;
                     &lt;configuration&gt;
@@ -531,67 +494,17 @@
                         &lt;target&gt;1.5&lt;/target&gt;
                     &lt;/configuration&gt;
                 &lt;/plugin&gt;
-                &lt;plugin&gt;
-                    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-                    &lt;artifactId&gt;maven-source-plugin&lt;/artifactId&gt;
-                    &lt;inherited&gt;true&lt;/inherited&gt;
-                    &lt;executions&gt;
-                        &lt;execution&gt;
-                            &lt;id&gt;attach-sources&lt;/id&gt;
-                            &lt;goals&gt;
-                                &lt;goal&gt;jar&lt;/goal&gt;
-                            &lt;/goals&gt;
-                        &lt;/execution&gt;
-                    &lt;/executions&gt;
-                &lt;/plugin&gt;
             &lt;/plugins&gt;
         &lt;/pluginManagement&gt;
         
         &lt;plugins&gt;
             &lt;plugin&gt;
                 &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-                &lt;artifactId&gt;maven-source-plugin&lt;/artifactId&gt;
-                &lt;inherited&gt;true&lt;/inherited&gt;
-            &lt;/plugin&gt;
-            &lt;plugin&gt;
-                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-                &lt;artifactId&gt;maven-site-plugin&lt;/artifactId&gt;
-            &lt;/plugin&gt;
-            &lt;plugin&gt;
-                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
                 &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
             &lt;/plugin&gt;
         &lt;/plugins&gt;
-
-        &lt;extensions&gt;
-          &lt;extension&gt;
-            &lt;groupId&gt;org.apache.maven.wagon&lt;/groupId&gt;
-            &lt;artifactId&gt;wagon-ssh-external&lt;/artifactId&gt;
-            &lt;version&gt;1.0-alpha-5&lt;/version&gt;
-          &lt;/extension&gt;
-          &lt;extension&gt;
-            &lt;groupId&gt;org.apache.maven.wagon&lt;/groupId&gt;
-            &lt;artifactId&gt;wagon-ftp&lt;/artifactId&gt;
-            &lt;version&gt;1.0-alpha-6&lt;/version&gt;
-          &lt;/extension&gt;
-       &lt;/extensions&gt;
-
     &lt;/build&gt;
 
-    &lt;reporting&gt;
-        &lt;plugins&gt;
-            &lt;plugin&gt;
-                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-                &lt;artifactId&gt;maven-project-info-reports-plugin&lt;/artifactId&gt;
-            &lt;/plugin&gt;
-
-            &lt;plugin&gt;
-                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
-                &lt;artifactId&gt;maven-javadoc-plugin&lt;/artifactId&gt;
-            &lt;/plugin&gt;
-        &lt;/plugins&gt;
-    &lt;/reporting&gt;
-
     &lt;profiles&gt;
         &lt;profile&gt;
             &lt;id&gt;assembly&lt;/id&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775044 - /portals/pluto/trunk/pom.xml</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090515073022.AF1D82388898@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090515073022-AF1D82388898@eris-apache-org%3e</id>
<updated>2009-05-15T07:30:22Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Fri May 15 07:30:22 2009
New Revision: 775044

URL: http://svn.apache.org/viewvc?rev=775044&amp;view=rev
Log:
PLUTO-546 : Remove separate parent pom again, root pom is also the parent pom

Modified:
    portals/pluto/trunk/pom.xml

Modified: portals/pluto/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pom.xml?rev=775044&amp;r1=775043&amp;r2=775044&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pom.xml (original)
+++ portals/pluto/trunk/pom.xml Fri May 15 07:30:22 2009
@@ -621,8 +621,6 @@
     &lt;!-- Pluto Modules ======================================================= --&gt;
 
     &lt;modules&gt;
-      &lt;!-- Parent --&gt;
-        &lt;module&gt;parent&lt;/module&gt;
       &lt;!-- Pluto Container API --&gt;
         &lt;module&gt;pluto-container-api&lt;/module&gt;
         




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r775043 - in /portals/pluto/trunk: parent/ pom.xml</title>
<author><name>cziegeler@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/portals-pluto-scm/200905.mbox/%3c20090515072920.51B682388895@eris.apache.org%3e"/>
<id>urn:uuid:%3c20090515072920-51B682388895@eris-apache-org%3e</id>
<updated>2009-05-15T07:29:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: cziegeler
Date: Fri May 15 07:29:19 2009
New Revision: 775043

URL: http://svn.apache.org/viewvc?rev=775043&amp;view=rev
Log:
PLUTO-546 : Remove separate parent pom again, root pom is also the parent pom

Removed:
    portals/pluto/trunk/parent/
Modified:
    portals/pluto/trunk/pom.xml

Modified: portals/pluto/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pom.xml?rev=775043&amp;r1=775042&amp;r2=775043&amp;view=diff
==============================================================================
--- portals/pluto/trunk/pom.xml (original)
+++ portals/pluto/trunk/pom.xml Fri May 15 07:29:19 2009
@@ -20,27 +20,604 @@
 &lt;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"&gt;
 
     &lt;parent&gt;
-        &lt;groupId&gt;org.apache&lt;/groupId&gt;
-        &lt;artifactId&gt;apache&lt;/artifactId&gt;
-        &lt;version&gt;3&lt;/version&gt;
+        &lt;groupId&gt;org.apache.portals&lt;/groupId&gt;
+        &lt;artifactId&gt;portals-pom&lt;/artifactId&gt;
+        &lt;version&gt;1.2&lt;/version&gt;
     &lt;/parent&gt;
 
     &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
     &lt;groupId&gt;org.apache.portals.pluto&lt;/groupId&gt;
-    &lt;artifactId&gt;reactor&lt;/artifactId&gt;
+    &lt;artifactId&gt;pluto&lt;/artifactId&gt;
     &lt;packaging&gt;pom&lt;/packaging&gt;
-    &lt;name&gt;Apache Pluto - Reactor Build&lt;/name&gt;
-    &lt;version&gt;1-SNAPSHOT&lt;/version&gt;
+    &lt;name&gt;Apache Pluto&lt;/name&gt;
+    &lt;!-- 
+    Any version changes need to be changed in:
+    1. All poms of children modules
+    2. pluto.container.version.minor property in environment.properties in 
+    pluto-container module (src/main/resources/org/apache/pluto).
+    3. portal-version element in pluto-portal-driver-config.xml in pluto-portal module 
+    (src/main/webapp/WEB-INF)
+    4. expected.serverInfo and expected.portalInfo properties in expectedResults.properties

+    in testsuite module (src/main/webapp/WEB-INF/classes)
+    5. pluto.version in Ant build file dist-build.xml.
+     --&gt;
+    &lt;version&gt;2.0.0-SNAPSHOT&lt;/version&gt;
     &lt;!-- Due to a bug in maven 2.0, the description must not contain any line breaks or
tabs. --&gt;
     &lt;description&gt;Apache Pluto is the Reference Implementation of the Java Portlet Specification.&lt;/description&gt;
     &lt;url&gt;http://portals.apache.org/pluto&lt;/url&gt;
 
+    &lt;issueManagement&gt;
+        &lt;system&gt;jira&lt;/system&gt;
+        &lt;url&gt;http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10560&lt;/url&gt;
+    &lt;/issueManagement&gt;
+    &lt;inceptionYear&gt;2003&lt;/inceptionYear&gt;
+
+
+    &lt;!-- Mailing Lists ======================================================= --&gt;
+
+    &lt;mailingLists&gt;
+        &lt;mailingList&gt;
+            &lt;name&gt;Pluto User List&lt;/name&gt;
+            &lt;subscribe&gt;pluto-user-subscribe@portals.apache.org&lt;/subscribe&gt;
+            &lt;unsubscribe&gt;pluto-user-unsubscribe@portals.apache.org&lt;/unsubscribe&gt;
+            &lt;post&gt;pluto-user@portals.apache.org&lt;/post&gt;
+            &lt;archive&gt;http://mail-archives.apache.org/mod_mbox/portals-pluto-user&lt;/archive&gt;
+        &lt;/mailingList&gt;
+        &lt;mailingList&gt;
+            &lt;name&gt;Pluto Developer List&lt;/name&gt;
+            &lt;subscribe&gt;pluto-dev-subscribe@portals.apache.org&lt;/subscribe&gt;
+            &lt;unsubscribe&gt;pluto-dev-unsubscribe@portals.apache.org&lt;/unsubscribe&gt;
+            &lt;post&gt;pluto-dev@portals.apache.org&lt;/post&gt;
+            &lt;archive&gt;http://mail-archives.apache.org/mod_mbox/portals-pluto-dev&lt;/archive&gt;
+        &lt;/mailingList&gt;
+        &lt;mailingList&gt;
+            &lt;name&gt;Pluto SCM List&lt;/name&gt;
+            &lt;subscribe&gt;pluto-scm-subscribe@portals.apache.org&lt;/subscribe&gt;
+            &lt;unsubscribe&gt;pluto-scm-unsubscribe@portals.apache.org&lt;/unsubscribe&gt;
+            &lt;post&gt;pluto-scm@portals.apache.org&lt;/post&gt;
+            &lt;archive&gt;http://mail-archives.apache.org/mod_mbox/portals-pluto-scm&lt;/archive&gt;
+        &lt;/mailingList&gt;
+    &lt;/mailingLists&gt;
+
+
+    &lt;!-- Pluto Committers ==================================================== --&gt;
+
+    &lt;!-- Email format: [name]#a@T#[domain].d0t.[extension]
+ '@' and '.' characters are added because m2 seems to need them to
+ generate mailto links. --&gt;
+
+    &lt;developers&gt;
+
+        &lt;developer&gt;
+            &lt;name&gt;Michael Blum&lt;/name&gt;
+            &lt;id&gt;blumm&lt;/id&gt;
+            &lt;email&gt;blumm#a@T#apache.d0t.org&lt;/email&gt;
+        &lt;/developer&gt;
+
+        &lt;developer&gt;
+            &lt;name&gt;Carsten Ziegeler&lt;/name&gt;
+            &lt;id&gt;cziegeler&lt;/id&gt;
+            &lt;email&gt;cziegeler#a@T#apache.d0t.org&lt;/email&gt;
+        &lt;/developer&gt;
+
+        &lt;developer&gt;
+            &lt;name&gt;David DeWolf&lt;/name&gt;
+            &lt;id&gt;ddewolf&lt;/id&gt;
+            &lt;email&gt;ddewolf@apache.org&lt;/email&gt;
+            &lt;timezone&gt;-4&lt;/timezone&gt;
+            &lt;url&gt;http://www.daviddewolf.com&lt;/url&gt;
+            &lt;organization&gt;Three Pillar Software, Inc.&lt;/organization&gt;
+            &lt;organizationUrl&gt;http://www.threepillarsoftware.com&lt;/organizationUrl&gt;
+            &lt;roles&gt;
+                &lt;role&gt;Java Developer&lt;/role&gt;
+            &lt;/roles&gt;
+        &lt;/developer&gt;
+
+        &lt;developer&gt;
+            &lt;name&gt;Nick Lothian&lt;/name&gt;
+            &lt;id&gt;nlothian&lt;/id&gt;
+            &lt;email&gt;nlothian#a@T#apache.d0t.org&lt;/email&gt;
+        &lt;/developer&gt;
+
+        &lt;developer&gt;
+            &lt;name&gt;Craig Doremus&lt;/name&gt;
+            &lt;id&gt;cdoremus&lt;/id&gt;
+            &lt;email&gt;cdoremus#a@T#apache.d0t.org&lt;/email&gt;
+        &lt;/developer&gt;
+
+        &lt;developer&gt;
+            &lt;name&gt;Zhong Zheng&lt;/name&gt;
+            &lt;id&gt;zheng&lt;/id&gt;
+            &lt;email&gt;zheng#a@T#apache.d0t.org&lt;/email&gt;
+            &lt;timezone&gt;+1&lt;/timezone&gt;
+            &lt;organization /&gt;
+            &lt;roles&gt;
+                &lt;role&gt;Java Developer&lt;/role&gt;
+            &lt;/roles&gt;
+        &lt;/developer&gt;
+
+        &lt;developer&gt;
+            &lt;name&gt;Santiago Gala&lt;/name&gt;
+            &lt;id&gt;sgala&lt;/id&gt;
+            &lt;email&gt;sgala#a@T#hisitech.d0t.com&lt;/email&gt;
+            &lt;organization /&gt;
+        &lt;/developer&gt;
+
+        &lt;developer&gt;
+            &lt;name&gt;Raphael Luta&lt;/name&gt;
+            &lt;id&gt;raphael&lt;/id&gt;
+            &lt;email&gt;raphael#a@T#apache.d0t.org&lt;/email&gt;
+            &lt;organization /&gt;
+        &lt;/developer&gt;
+
+        &lt;developer&gt;
+            &lt;name&gt;David S. Taylor&lt;/name&gt;
+            &lt;id&gt;taylor&lt;/id&gt;
+            &lt;email&gt;david#a@T#bluesunrise.d0t.com&lt;/email&gt;
+            &lt;organization /&gt;
+        &lt;/developer&gt;
+
+        &lt;developer&gt;
+            &lt;name&gt;Scott T. Weaver&lt;/name&gt;
+            &lt;id&gt;weaver&lt;/id&gt;
+            &lt;email&gt;weaver#a@T#apache.d0t.org&lt;/email&gt;
+        &lt;/developer&gt;
+
+        &lt;developer&gt;
+            &lt;name&gt;Stefan Hepper&lt;/name&gt;
+            &lt;id&gt;sthepper&lt;/id&gt;
+            &lt;email&gt;sthepper#a@T#apache.d0t.org&lt;/email&gt;
+        &lt;/developer&gt;
+
+        &lt;developer&gt;
+            &lt;name&gt;Elliot Metsger&lt;/name&gt;
+            &lt;id&gt;esm&lt;/id&gt;
+            &lt;email&gt;esm#a@T#apache.d0t.org&lt;/email&gt;
+            &lt;timezone&gt;-4&lt;/timezone&gt;
+            &lt;url&gt;http://uppertank.net/blog&lt;/url&gt;
+            &lt;organization&gt;Johns Hopkins University, Sheridan Libraries&lt;/organization&gt;
+            &lt;organizationUrl&gt;http://www.library.jhu.edu&lt;/organizationUrl&gt;
+        &lt;/developer&gt;
+
+        &lt;developer&gt;
+            &lt;name&gt;Ate Douma&lt;/name&gt;
+            &lt;id&gt;ate&lt;/id&gt;
+            &lt;email&gt;ate#aT#apache.d0t.org&lt;/email&gt;
+            &lt;timezone&gt;+2&lt;/timezone&gt;
+            &lt;organization&gt;Hippo&lt;/organization&gt;
+            &lt;organizationUrl&gt;http://www.onehippo.com&lt;/organizationUrl&gt;
+            &lt;roles&gt;
+                &lt;role&gt;Java Developer&lt;/role&gt;
+            &lt;/roles&gt;
+    &lt;/developer&gt;
+
+    &lt;/developers&gt;
+
+
+    &lt;!-- Pluto Contributors ================================================== --&gt;
+
+    &lt;contributors&gt;
+        &lt;contributor&gt;
+            &lt;name&gt;Michael Westbay&lt;/name&gt;
+            &lt;email&gt;westbay#a@T#users.d0t.sourceforge.d0t.net&lt;/email&gt;
+        &lt;/contributor&gt;
+        &lt;contributor&gt;
+            &lt;name&gt;Ken Weiner&lt;/name&gt;
+            &lt;email&gt;kweiner#a@T#unicon.d0t.net&lt;/email&gt;
+        &lt;/contributor&gt;
+        &lt;contributor&gt;
+            &lt;name&gt;Ken Atherton&lt;/name&gt;
+            &lt;email&gt;katherto#a@T#visa.d0t.com&lt;/email&gt;
+        &lt;/contributor&gt;
+        &lt;contributor&gt;
+            &lt;name&gt;David Hay&lt;/name&gt;
+        &lt;/contributor&gt;
+
+        &lt;contributor&gt;
+
+        &lt;/contributor&gt;
+    &lt;/contributors&gt;
+
+    &lt;licenses&gt;
+        &lt;license&gt;
+            &lt;name&gt;The Apache Software License, Version 2.0&lt;/name&gt;
+            &lt;url&gt;http://www.apache.org/licenses/LICENSE-2.0.txt&lt;/url&gt;
+            &lt;distribution&gt;repo&lt;/distribution&gt;
+        &lt;/license&gt;
+    &lt;/licenses&gt;
+
     &lt;scm&gt;
         &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/portals/pluto/trunk&lt;/connection&gt;
         &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/portals/pluto/trunk&lt;/developerConnection&gt;
         &lt;url&gt;http://svn.apache.org/viewcvs.cgi/portals/pluto/trunk&lt;/url&gt;
     &lt;/scm&gt;
 
+    &lt;organization&gt;
+        &lt;name&gt;The Apache Software Foundation&lt;/name&gt;
+        &lt;url&gt;http://www.apache.org/&lt;/url&gt;
+    &lt;/organization&gt;
+
+
+    &lt;!-- Dependency Version Properties ======================================= --&gt;
+
+    &lt;!--
+    NOTE:
+    
+    Modification of these properties affects:
+    1)  maven-pluto-plugin/src/main/resources/versions.properties as well!
+    --&gt;
+    &lt;properties&gt;
+        &lt;pluto.container.name&gt;Pluto&lt;/pluto.container.name&gt;
+        &lt;javax.portlet.version.major&gt;2&lt;/javax.portlet.version.major&gt;
+        &lt;javax.portlet.version.minor&gt;0&lt;/javax.portlet.version.minor&gt;
+        &lt;portals.portlet2-api-spec.version&gt;1.0&lt;/portals.portlet2-api-spec.version&gt;
+        &lt;servlet-api.version&gt;2.4&lt;/servlet-api.version&gt;
+        &lt;jsp-api.version&gt;2.0&lt;/jsp-api.version&gt;
+        &lt;jstl.version&gt;1.1.2&lt;/jstl.version&gt;
+        &lt;taglibs.standard.version&gt;1.1.2&lt;/taglibs.standard.version&gt;
+        &lt;jaxb.version&gt;2.1&lt;/jaxb.version&gt;
+        &lt;jaxb-impl.version&gt;2.1.9&lt;/jaxb-impl.version&gt;
+        &lt;stax.impl.version&gt;1.2.0&lt;/stax.impl.version&gt;
+        &lt;commons-digester.version&gt;1.8&lt;/commons-digester.version&gt;
+        &lt;commons-cli.version&gt;1.0&lt;/commons-cli.version&gt;
+        &lt;slf4j.version&gt;1.5.6&lt;/slf4j.version&gt;
+        &lt;springframework.version&gt;2.0.2&lt;/springframework.version&gt;
+        &lt;maven.version&gt;2.0.5&lt;/maven.version&gt;
+        &lt;ant.version&gt;1.6.5&lt;/ant.version&gt;
+        &lt;commons-io.version&gt;1.3.1&lt;/commons-io.version&gt;
+        &lt;ccpp-api.version&gt;1.0&lt;/ccpp-api.version&gt;
+        &lt;junit.version&gt;4.0&lt;/junit.version&gt;
+        &lt;jmock.version&gt;1.2.0&lt;/jmock.version&gt;
+        &lt;xmlunit.version&gt;1.1&lt;/xmlunit.version&gt;
+
+        &lt;!-- The following properties are not directly used as maven
+             dependencies, they're used by the maven pluto plugin for
+             handling installation dependencies
+             TODO: Check if we need all of them. --&gt;
+        &lt;xerces.version&gt;2.6.2&lt;/xerces.version&gt;
+        &lt;xalan.version&gt;2.7.0&lt;/xalan.version&gt;
+        &lt;castor.version&gt;1.1.1&lt;/castor.version&gt;
+        &lt;commons-collections.version&gt;3.2&lt;/commons-collections.version&gt;
+        &lt;commons-httpclient.version&gt;3.0&lt;/commons-httpclient.version&gt;
+        &lt;commons-beanutils.version&gt;1.7.0&lt;/commons-beanutils.version&gt;
+        &lt;log4j.version&gt;1.2.14&lt;/log4j.version&gt;
+        &lt;activation.version&gt;1.1&lt;/activation.version&gt;
+        &lt;ccpp-ri.version&gt;1.0&lt;/ccpp-ri.version&gt;
+        &lt;rdffilter.version&gt;1.0&lt;/rdffilter.version&gt;
+        &lt;jena.version&gt;1.4.0&lt;/jena.version&gt;
+    &lt;/properties&gt;
+
+    &lt;dependencyManagement&gt;
+        &lt;dependencies&gt;
+        &lt;!-- Logging =========================================== --&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;org.slf4j&lt;/groupId&gt;
+                &lt;artifactId&gt;slf4j-api&lt;/artifactId&gt;
+                &lt;version&gt;${slf4j.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;org.slf4j&lt;/groupId&gt;
+                &lt;artifactId&gt;slf4j-jdk14&lt;/artifactId&gt;
+                &lt;version&gt;${slf4j.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+    
+        &lt;!-- Specification Libraries =========================================== --&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;org.apache.portals&lt;/groupId&gt;
+                &lt;artifactId&gt;portlet-api_2.0_spec&lt;/artifactId&gt;
+                &lt;version&gt;${portals.portlet2-api-spec.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
+                &lt;artifactId&gt;servlet-api&lt;/artifactId&gt;
+                &lt;version&gt;${servlet-api.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+        
+            &lt;dependency&gt;
+                &lt;groupId&gt;javax.xml.bind&lt;/groupId&gt;
+                &lt;artifactId&gt;jaxb-api&lt;/artifactId&gt;
+                &lt;version&gt;${jaxb.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            
+            &lt;dependency&gt;
+                &lt;groupId&gt;com.sun.xml.bind&lt;/groupId&gt;
+                &lt;artifactId&gt;jaxb-impl&lt;/artifactId&gt;
+                &lt;version&gt;${jaxb-impl.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;stax&lt;/groupId&gt;
+                &lt;artifactId&gt;stax&lt;/artifactId&gt;
+                &lt;version&gt;${stax.impl.version}&lt;/version&gt;
+                &lt;exclusions&gt;
+                    &lt;exclusion&gt;
+                        &lt;groupId&gt;stax&lt;/groupId&gt;
+                        &lt;artifactId&gt;stax-api&lt;/artifactId&gt;
+                    &lt;/exclusion&gt;
+                &lt;/exclusions&gt;
+            &lt;/dependency&gt;
+        
+        &lt;!--  CCPP Libraries --&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;javax.ccpp&lt;/groupId&gt;
+                &lt;artifactId&gt;ccpp&lt;/artifactId&gt;
+                &lt;version&gt;${ccpp-api.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+    
+        &lt;!-- Testing Libraries ================================================= --&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;junit&lt;/groupId&gt;
+                &lt;artifactId&gt;junit&lt;/artifactId&gt;
+                &lt;version&gt;${junit.version}&lt;/version&gt;
+                &lt;scope&gt;test&lt;/scope&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;jmock&lt;/groupId&gt;
+                &lt;artifactId&gt;jmock&lt;/artifactId&gt;
+                &lt;version&gt;${jmock.version}&lt;/version&gt;
+                &lt;scope&gt;test&lt;/scope&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;jmock&lt;/groupId&gt;
+                &lt;artifactId&gt;jmock-cglib&lt;/artifactId&gt;
+                &lt;version&gt;${jmock.version}&lt;/version&gt;
+                &lt;scope&gt;test&lt;/scope&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;xmlunit&lt;/groupId&gt;
+                &lt;artifactId&gt;xmlunit&lt;/artifactId&gt;
+                &lt;version&gt;${xmlunit.version}&lt;/version&gt;
+                &lt;scope&gt;test&lt;/scope&gt;
+            &lt;/dependency&gt;
+        &lt;!-- Misc ================================================= --&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;ant&lt;/groupId&gt;
+                &lt;artifactId&gt;ant&lt;/artifactId&gt;
+                &lt;version&gt;${ant.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-core&lt;/artifactId&gt;
+                &lt;version&gt;${maven.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-artifact&lt;/artifactId&gt;
+                &lt;version&gt;${maven.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-model&lt;/artifactId&gt;
+                &lt;version&gt;${maven.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-project&lt;/artifactId&gt;
+                &lt;version&gt;${maven.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;org.apache.maven&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-plugin-api&lt;/artifactId&gt;
+                &lt;version&gt;${maven.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
+                &lt;artifactId&gt;jsp-api&lt;/artifactId&gt;
+                &lt;version&gt;${jsp-api.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;javax.servlet&lt;/groupId&gt;
+                &lt;artifactId&gt;jstl&lt;/artifactId&gt;
+                &lt;version&gt;${jstl.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;taglibs&lt;/groupId&gt;
+                &lt;artifactId&gt;standard&lt;/artifactId&gt;
+                &lt;version&gt;${taglibs.standard.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;org.springframework&lt;/groupId&gt;
+                &lt;artifactId&gt;spring-core&lt;/artifactId&gt;
+                &lt;version&gt;${springframework.version}&lt;/version&gt;
+                &lt;scope&gt;compile&lt;/scope&gt;
+                &lt;exclusions&gt;
+                    &lt;exclusion&gt;
+                        &lt;groupId&gt;commons-logging&lt;/groupId&gt;
+                        &lt;artifactId&gt;commons-logging&lt;/artifactId&gt;
+                    &lt;/exclusion&gt;
+                &lt;/exclusions&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;org.springframework&lt;/groupId&gt;
+                &lt;artifactId&gt;spring-beans&lt;/artifactId&gt;
+                &lt;version&gt;${springframework.version}&lt;/version&gt;
+                &lt;exclusions&gt;
+                    &lt;exclusion&gt;
+                        &lt;groupId&gt;commons-logging&lt;/groupId&gt;
+                        &lt;artifactId&gt;commons-logging&lt;/artifactId&gt;
+                    &lt;/exclusion&gt;
+                &lt;/exclusions&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;org.springframework&lt;/groupId&gt;
+                &lt;artifactId&gt;spring-web&lt;/artifactId&gt;
+                &lt;version&gt;${springframework.version}&lt;/version&gt;
+                &lt;exclusions&gt;
+                    &lt;exclusion&gt;
+                        &lt;groupId&gt;commons-logging&lt;/groupId&gt;
+                        &lt;artifactId&gt;commons-logging&lt;/artifactId&gt;
+                    &lt;/exclusion&gt;
+                &lt;/exclusions&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;commons-io&lt;/groupId&gt;
+                &lt;artifactId&gt;commons-io&lt;/artifactId&gt;
+                &lt;version&gt;${commons-io.version}&lt;/version&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+                &lt;groupId&gt;commons-digester&lt;/groupId&gt;
+                &lt;artifactId&gt;commons-digester&lt;/artifactId&gt;
+                &lt;version&gt;${commons-digester.version}&lt;/version&gt;
+                &lt;exclusions&gt;
+                  &lt;exclusion&gt;
+                    &lt;groupId&gt;commons-logging&lt;/groupId&gt;
+                    &lt;artifactId&gt;commons-logging&lt;/artifactId&gt;
+                  &lt;/exclusion&gt;
+                &lt;/exclusions&gt;
+            &lt;/dependency&gt;
+            &lt;dependency&gt;
+              &lt;groupId&gt;commons-cli&lt;/groupId&gt;
+              &lt;artifactId&gt;commons-cli&lt;/artifactId&gt;
+              &lt;version&gt;${commons-cli.version}&lt;/version&gt;
+              &lt;exclusions&gt;
+                 &lt;exclusion&gt;
+                   &lt;groupId&gt;junit&lt;/groupId&gt;
+                   &lt;artifactId&gt;junit&lt;/artifactId&gt;
+                 &lt;/exclusion&gt;
+                 &lt;exclusion&gt;
+                   &lt;groupId&gt;commons-logging&lt;/groupId&gt;
+                   &lt;artifactId&gt;commons-logging&lt;/artifactId&gt;
+                 &lt;/exclusion&gt;
+               &lt;/exclusions&gt;
+            &lt;/dependency&gt;
+        &lt;/dependencies&gt;
+    &lt;/dependencyManagement&gt;
+
+    &lt;build&gt;
+        &lt;pluginManagement&gt;
+            &lt;plugins&gt;
+                &lt;plugin&gt;
+                    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                    &lt;artifactId&gt;maven-release-plugin&lt;/artifactId&gt;
+                    &lt;version&gt;2.0-beta-8&lt;/version&gt;
+                &lt;/plugin&gt;
+                &lt;plugin&gt;
+                    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                    &lt;artifactId&gt;maven-gpg-plugin&lt;/artifactId&gt;
+                    &lt;version&gt;1.0-alpha-4&lt;/version&gt;
+                &lt;/plugin&gt;
+                &lt;plugin&gt;
+                    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                    &lt;artifactId&gt;maven-site-plugin&lt;/artifactId&gt;
+                    &lt;version&gt;2.0-beta-6&lt;/version&gt;
+                &lt;/plugin&gt;
+                &lt;plugin&gt;
+                    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                    &lt;artifactId&gt;maven-remote-resources-plugin&lt;/artifactId&gt;
+                    &lt;version&gt;1.0-alpha-5&lt;/version&gt;
+                    &lt;executions&gt;
+                        &lt;execution&gt;
+                            &lt;goals&gt; 
+                                &lt;goal&gt;process&lt;/goal&gt;
+                            &lt;/goals&gt;
+                            &lt;configuration&gt;
+                                &lt;supplementalModels&gt;
+                                    &lt;supplementalModel&gt;
+                                        ${project.basedir}/../pluto-site/src/main/appended-resources/supplemental-models.xml
+                                    &lt;/supplementalModel&gt;
+                                &lt;/supplementalModels&gt;
+                                &lt;resourceBundles&gt;
+                                    &lt;resourceBundle&gt;org.apache:apache-jar-resource-bundle:1.2&lt;/resourceBundle&gt;
+                                &lt;/resourceBundles&gt;
+                            &lt;/configuration&gt;
+                        &lt;/execution&gt;
+                    &lt;/executions&gt;
+                &lt;/plugin&gt;
+                &lt;plugin&gt;
+                    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                    &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
+                    &lt;version&gt;2.0.2&lt;/version&gt;
+                    &lt;configuration&gt;
+                        &lt;source&gt;1.5&lt;/source&gt;
+                        &lt;target&gt;1.5&lt;/target&gt;
+                    &lt;/configuration&gt;
+                &lt;/plugin&gt;
+                &lt;plugin&gt;
+                    &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                    &lt;artifactId&gt;maven-source-plugin&lt;/artifactId&gt;
+                    &lt;inherited&gt;true&lt;/inherited&gt;
+                    &lt;executions&gt;
+                        &lt;execution&gt;
+                            &lt;id&gt;attach-sources&lt;/id&gt;
+                            &lt;goals&gt;
+                                &lt;goal&gt;jar&lt;/goal&gt;
+                            &lt;/goals&gt;
+                        &lt;/execution&gt;
+                    &lt;/executions&gt;
+                &lt;/plugin&gt;
+            &lt;/plugins&gt;
+        &lt;/pluginManagement&gt;
+        
+        &lt;plugins&gt;
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-source-plugin&lt;/artifactId&gt;
+                &lt;inherited&gt;true&lt;/inherited&gt;
+            &lt;/plugin&gt;
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-site-plugin&lt;/artifactId&gt;
+            &lt;/plugin&gt;
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
+            &lt;/plugin&gt;
+        &lt;/plugins&gt;
+
+        &lt;extensions&gt;
+          &lt;extension&gt;
+            &lt;groupId&gt;org.apache.maven.wagon&lt;/groupId&gt;
+            &lt;artifactId&gt;wagon-ssh-external&lt;/artifactId&gt;
+            &lt;version&gt;1.0-alpha-5&lt;/version&gt;
+          &lt;/extension&gt;
+          &lt;extension&gt;
+            &lt;groupId&gt;org.apache.maven.wagon&lt;/groupId&gt;
+            &lt;artifactId&gt;wagon-ftp&lt;/artifactId&gt;
+            &lt;version&gt;1.0-alpha-6&lt;/version&gt;
+          &lt;/extension&gt;
+       &lt;/extensions&gt;
+
+    &lt;/build&gt;
+
+    &lt;reporting&gt;
+        &lt;plugins&gt;
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-project-info-reports-plugin&lt;/artifactId&gt;
+            &lt;/plugin&gt;
+
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-javadoc-plugin&lt;/artifactId&gt;
+            &lt;/plugin&gt;
+        &lt;/plugins&gt;
+    &lt;/reporting&gt;
+
+    &lt;profiles&gt;
+        &lt;profile&gt;
+            &lt;id&gt;assembly&lt;/id&gt;
+            &lt;modules&gt;
+                &lt;module&gt;assembly&lt;/module&gt;
+            &lt;/modules&gt;
+            &lt;build&gt;
+                &lt;plugins&gt;
+                    &lt;plugin&gt;
+                        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                        &lt;artifactId&gt;maven-gpg-plugin&lt;/artifactId&gt;
+                        &lt;executions&gt;
+                            &lt;execution&gt;
+                                &lt;id&gt;sign-artifacts&lt;/id&gt;
+                                &lt;phase&gt;verify&lt;/phase&gt;
+                                &lt;goals&gt;
+                                    &lt;goal&gt;sign&lt;/goal&gt;
+                                &lt;/goals&gt;
+                            &lt;/execution&gt;
+                        &lt;/executions&gt;
+                    &lt;/plugin&gt;
+                &lt;/plugins&gt;                
+            &lt;/build&gt;        
+        &lt;/profile&gt;
+    &lt;/profiles&gt;
+
     &lt;!-- Pluto Modules ======================================================= --&gt;
 
     &lt;modules&gt;
@@ -69,5 +646,4 @@
         &lt;!--module&gt;pluto-site&lt;/module--&gt;
         &lt;module&gt;pluto-site-skin&lt;/module&gt;
     &lt;/modules&gt;
-
 &lt;/project&gt;




</pre>
</div>
</content>
</entry>
</feed>
