You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrp4j-dev@portals.apache.org by es...@apache.org on 2007/08/18 05:00:06 UTC

svn commit: r567216 - in /portals/wsrp4j/trunk: ./ commons-consumer/ commons-producer/ commons/ consumer-proxyportlet/ consumer-swingconsumer/ persistence-db/ persistence-xml/ producer/ testportlet/

Author: esm
Date: Fri Aug 17 20:00:05 2007
New Revision: 567216

URL: http://svn.apache.org/viewvc?view=rev&rev=567216
Log:
Reformatting poms.  No changes except for format.

Modified:
    portals/wsrp4j/trunk/commons-consumer/pom.xml
    portals/wsrp4j/trunk/commons-producer/pom.xml
    portals/wsrp4j/trunk/commons/pom.xml
    portals/wsrp4j/trunk/consumer-proxyportlet/pom.xml
    portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml
    portals/wsrp4j/trunk/persistence-db/pom.xml
    portals/wsrp4j/trunk/persistence-xml/pom.xml
    portals/wsrp4j/trunk/pom.xml
    portals/wsrp4j/trunk/producer/pom.xml
    portals/wsrp4j/trunk/testportlet/pom.xml

Modified: portals/wsrp4j/trunk/commons-consumer/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/commons-consumer/pom.xml?view=diff&rev=567216&r1=567215&r2=567216
==============================================================================
--- portals/wsrp4j/trunk/commons-consumer/pom.xml (original)
+++ portals/wsrp4j/trunk/commons-consumer/pom.xml Fri Aug 17 20:00:05 2007
@@ -18,55 +18,73 @@
     | This is the main Maven file for wsrp4j-commons-consumer
     | @version $Id$
     +-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" 
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <parent>
-    <artifactId>wsrp4j</artifactId>
-    <groupId>org.apache.wsrp4j</groupId>
-    <version>0.4-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>wsrp4j-commons-consumer</artifactId>
-  <packaging>jar</packaging>
-  <name>WSRP4J Commons Consumer</name>
-  <description>
-    WSRP4J Commons Consumer is a placeholder for code shared by any consumer
-    implementation.
-  </description>
-  <build>
-    <sourceDirectory>src/java</sourceDirectory>
-  </build>
-  <dependencies>
-    <dependency>
-      <artifactId>wsrp4j-commons</artifactId>
-      <groupId>org.apache.wsrp4j</groupId>
-      <version>${pom.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>portlet-api</artifactId>
-      <groupId>portlet-api</groupId>
-      <version>${portlet-api.version}</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <artifactId>axis</artifactId>
-      <groupId>org.apache.axis</groupId>
-      <version>${axis.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>axis-jaxrpc</artifactId>
-      <groupId>org.apache.axis</groupId>
-      <version>${axis.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>axis-saaj</artifactId>
-      <groupId>org.apache.axis</groupId>
-      <version>${axis.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>commons-lang</artifactId>
-      <groupId>commons-lang</groupId>
-      <version>${commons-lang.version}</version>
-    </dependency>
-  </dependencies>
+<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">
+    
+    <parent>
+        <artifactId>wsrp4j</artifactId>
+        <groupId>org.apache.wsrp4j</groupId>
+        <version>0.4-SNAPSHOT</version>
+    </parent>
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <artifactId>wsrp4j-commons-consumer</artifactId>
+    <packaging>jar</packaging>
+    <name>WSRP4J Commons Consumer</name>
+    <description>
+        WSRP4J Commons Consumer is a placeholder for code shared by any consumer
+        implementation.
+    </description>
+    
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+    </build>
+    
+    <dependencies>
+        
+        <!-- Compile-time dependencies ============================ -->
+        
+        <dependency>
+            <artifactId>wsrp4j-commons</artifactId>
+            <groupId>org.apache.wsrp4j</groupId>
+            <version>${pom.version}</version>
+        </dependency>        
+        
+        <dependency>
+            <artifactId>axis</artifactId>
+            <groupId>org.apache.axis</groupId>
+            <version>${axis.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>axis-jaxrpc</artifactId>
+            <groupId>org.apache.axis</groupId>
+            <version>${axis.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>axis-saaj</artifactId>
+            <groupId>org.apache.axis</groupId>
+            <version>${axis.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>commons-lang</artifactId>
+            <groupId>commons-lang</groupId>
+            <version>${commons-lang.version}</version>
+        </dependency>
+        
+        <!-- Provided dependencies ================================ -->
+        
+        <dependency>
+            <artifactId>portlet-api</artifactId>
+            <groupId>portlet-api</groupId>
+            <version>${portlet-api.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        
+    </dependencies>
+    
 </project>

Modified: portals/wsrp4j/trunk/commons-producer/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/commons-producer/pom.xml?view=diff&rev=567216&r1=567215&r2=567216
==============================================================================
--- portals/wsrp4j/trunk/commons-producer/pom.xml (original)
+++ portals/wsrp4j/trunk/commons-producer/pom.xml Fri Aug 17 20:00:05 2007
@@ -18,45 +18,60 @@
     | This is the main Maven file for wsrp4j-commons-producer
     | @version $Id$
     +-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" 
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <parent>
-    <artifactId>wsrp4j</artifactId>
-    <groupId>org.apache.wsrp4j</groupId>
-    <version>0.4-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>wsrp4j-commons-producer</artifactId>
-  <packaging>jar</packaging>
-  <name>WSRP4J Commons Producer</name>
-  <description>
-    WSRP4J Commons Producer is a placeholder for code shared by any producer
-    implementation.
-  </description>
-  <build>
-    <sourceDirectory>src/java</sourceDirectory>
-  </build>
-  <dependencies>
-    <dependency>
-      <artifactId>wsrp4j-commons</artifactId>
-      <groupId>org.apache.wsrp4j</groupId>
-      <version>${pom.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>servlet-api</artifactId>
-      <groupId>javax.servlet</groupId>
-      <version>${servlet-api.version}</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <artifactId>axis</artifactId>
-      <groupId>org.apache.axis</groupId>
-      <version>${axis.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>commons-lang</artifactId>
-      <groupId>commons-lang</groupId>
-      <version>${commons-lang.version}</version>
-    </dependency>
-  </dependencies>
+<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">
+    
+    <parent>
+        <artifactId>wsrp4j</artifactId>
+        <groupId>org.apache.wsrp4j</groupId>
+        <version>0.4-SNAPSHOT</version>
+    </parent>
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <artifactId>wsrp4j-commons-producer</artifactId>
+    <packaging>jar</packaging>
+    <name>WSRP4J Commons Producer</name>
+    <description>
+        WSRP4J Commons Producer is a placeholder for code shared by any producer implementation.
+    </description>
+    
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+    </build>
+    
+    <dependencies>
+        
+        <!-- Compile-time dependencies ============================ -->
+        
+        <dependency>
+            <artifactId>wsrp4j-commons</artifactId>
+            <groupId>org.apache.wsrp4j</groupId>
+            <version>${pom.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>commons-lang</artifactId>
+            <groupId>commons-lang</groupId>
+            <version>${commons-lang.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>axis</artifactId>
+            <groupId>org.apache.axis</groupId>
+            <version>${axis.version}</version>
+        </dependency>
+        
+        <!-- Provided dependencies ================================ -->
+        
+        <dependency>
+            <artifactId>servlet-api</artifactId>
+            <groupId>javax.servlet</groupId>
+            <version>${servlet-api.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        
+    </dependencies>
+    
 </project>

Modified: portals/wsrp4j/trunk/commons/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/commons/pom.xml?view=diff&rev=567216&r1=567215&r2=567216
==============================================================================
--- portals/wsrp4j/trunk/commons/pom.xml (original)
+++ portals/wsrp4j/trunk/commons/pom.xml Fri Aug 17 20:00:05 2007
@@ -18,36 +18,43 @@
     | This is the main Maven file for wsrp4j-commons
     | @version $Id$
     +-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" 
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <parent>
-    <artifactId>wsrp4j</artifactId>
-    <groupId>org.apache.wsrp4j</groupId>
-    <version>0.4-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>wsrp4j-commons</artifactId>
-  <packaging>jar</packaging>
-  <name>WSRP4J Commons</name>
-  <description>
-    WSRP Commons is a placeholder for code shared by the producer and the 
-    consumer.
-  </description>
-  <build>
-    <sourceDirectory>src/java</sourceDirectory>
-    <resources>
-        <resource>
-            <targetPath>org/apache/wsrp4j/commons/exception</targetPath>
-            <directory>src/resources</directory>
-            <includes>
-                <include>messages.properties</include>
-            </includes>
-        </resource>
-    </resources>
-    <plugins>
-        <!-- Uncomment this code if you want to generate classes from
+<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">
+    
+    <parent>
+        <artifactId>wsrp4j</artifactId>
+        <groupId>org.apache.wsrp4j</groupId>
+        <version>0.4-SNAPSHOT</version>
+    </parent>
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <artifactId>wsrp4j-commons</artifactId>
+    <packaging>jar</packaging>
+    <name>WSRP4J Commons</name>
+    <description>
+        WSRP Commons is a placeholder for code shared by the producer and the consumer.
+    </description>
+    
+    <build>
+        
+        <sourceDirectory>src/java</sourceDirectory>
+        
+        <resources>
+            <resource>
+                <targetPath>org/apache/wsrp4j/commons/exception</targetPath>
+                <directory>src/resources</directory>
+                <includes>
+                    <include>messages.properties</include>
+                </includes>
+            </resource>
+        </resources>
+        
+        <plugins>
+            <!-- Uncomment this code if you want to generate classes from
              OASIS WSRP wsdl & xsd -->
-        <!--
+            <!--
         <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-antrun-plugin</artifactId>
@@ -78,64 +85,81 @@
             </executions>
         </plugin>
         -->
-    </plugins>
-  </build>
-  <dependencies>
-    <dependency>
-      <artifactId>axis</artifactId>
-      <groupId>org.apache.axis</groupId>
-      <version>${axis.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>axis-jaxrpc</artifactId>
-      <groupId>org.apache.axis</groupId>
-      <version>${axis.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>axis-ant</artifactId>
-      <groupId>org.apache.axis</groupId>
-      <version>${axis.version}</version>
-      <scope>compile</scope>
-    </dependency>
-    <dependency>
-      <artifactId>portlet-api</artifactId>
-      <groupId>portlet-api</groupId>
-      <version>${portlet-api.version}</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <artifactId>junit</artifactId>
-      <groupId>junit</groupId>
-      <version>${junit.version}</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <artifactId>commons-lang</artifactId>
-      <groupId>commons-lang</groupId>
-      <version>${commons-lang.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>commons-logging</artifactId>
-      <groupId>commons-logging</groupId>
-      <version>${commons-logging.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>commons-discovery</artifactId>
-      <groupId>commons-discovery</groupId>
-      <version>${commons-discovery.version}</version>
-      <scope>compile</scope>
-    </dependency>
-    <dependency>
-      <artifactId>wsdl4j</artifactId>
-      <groupId>wsdl4j</groupId>
-      <version>${wsdl4j.version}</version>
-      <scope>compile</scope>
-    </dependency>
-    <dependency>
-      <artifactId>mail</artifactId>
-      <groupId>javax.mail</groupId>
-      <version>${javax-mail.version}</version>
-      <scope>compile</scope>
-    </dependency>
-  </dependencies>
+        </plugins>
+    </build>
+    
+    <dependencies>
+        
+        <!-- Compile-time dependencies ============================ -->
+        
+        <dependency>
+            <artifactId>axis</artifactId>
+            <groupId>org.apache.axis</groupId>
+            <version>${axis.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>axis-jaxrpc</artifactId>
+            <groupId>org.apache.axis</groupId>
+            <version>${axis.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>axis-ant</artifactId>
+            <groupId>org.apache.axis</groupId>
+            <version>${axis.version}</version>
+            <scope>compile</scope>
+        </dependency>
+        
+        <dependency>
+            <artifactId>commons-lang</artifactId>
+            <groupId>commons-lang</groupId>
+            <version>${commons-lang.version}</version>
+        </dependency>        
+        
+        <dependency>
+            <artifactId>commons-logging</artifactId>
+            <groupId>commons-logging</groupId>
+            <version>${commons-logging.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>commons-discovery</artifactId>
+            <groupId>commons-discovery</groupId>
+            <version>${commons-discovery.version}</version>
+            <scope>compile</scope>
+        </dependency>
+        
+        <dependency>
+            <artifactId>wsdl4j</artifactId>
+            <groupId>wsdl4j</groupId>
+            <version>${wsdl4j.version}</version>
+            <scope>compile</scope>
+        </dependency>
+        
+        <dependency>
+            <artifactId>mail</artifactId>
+            <groupId>javax.mail</groupId>
+            <version>${javax-mail.version}</version>
+            <scope>compile</scope>
+        </dependency>
+        
+        <!-- Provided dependencies ================================ -->
+        
+        <dependency>
+            <artifactId>portlet-api</artifactId>
+            <groupId>portlet-api</groupId>
+            <version>${portlet-api.version}</version>
+            <scope>provided</scope>
+        </dependency>        
+        
+        <dependency>
+            <artifactId>junit</artifactId>
+            <groupId>junit</groupId>
+            <version>${junit.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        
+    </dependencies>
+    
 </project>

Modified: portals/wsrp4j/trunk/consumer-proxyportlet/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/consumer-proxyportlet/pom.xml?view=diff&rev=567216&r1=567215&r2=567216
==============================================================================
--- portals/wsrp4j/trunk/consumer-proxyportlet/pom.xml (original)
+++ portals/wsrp4j/trunk/consumer-proxyportlet/pom.xml Fri Aug 17 20:00:05 2007
@@ -18,108 +18,136 @@
     | This is the main Maven file for wsrp4j-proxyportlet
     | @version $Id$
     +-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" 
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <parent>
-    <artifactId>wsrp4j</artifactId>
-    <groupId>org.apache.wsrp4j</groupId>
-    <version>0.4-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>wsrp4j-proxyportlet</artifactId>
-  <packaging>war</packaging>
-  <name>WSRP4J ProxyPortlet</name>
-  <description>WSRP4J ProxyPortlet allows portal servers to consume WSRP remote portlets
-    through a JSR-168 interface.
-  </description>
-  <build>
-    <sourceDirectory>src/java</sourceDirectory>
-    <resources>
-        <resource>
-            <directory>${basedir}/src/resources</directory>
-            <targetPath>org/apache/wsrp4j/consumer/configportlet/messages</targetPath>
-            <includes>
-                <include>Messages.properties</include>
-            </includes>
-        </resource>
-    </resources>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-war-plugin</artifactId>
-        <version>2.0</version>
-        <configuration>
-          <warSourceDirectory>${basedir}/src/webapp</warSourceDirectory>
-          <warName>${pom.artifactId}</warName>
-          <webResources>
+<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">
+    
+    <parent>
+        <artifactId>wsrp4j</artifactId>
+        <groupId>org.apache.wsrp4j</groupId>
+        <version>0.4-SNAPSHOT</version>
+    </parent>
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <artifactId>wsrp4j-proxyportlet</artifactId>
+    <packaging>war</packaging>
+    <name>WSRP4J ProxyPortlet</name>
+    <description>
+        WSRP4J ProxyPortlet allows portal servers to consume WSRP remote portlets through a JSR-168 interface. 
+    </description>
+    
+    <build>
+        
+        <sourceDirectory>src/java</sourceDirectory>
+        
+        <resources>
             <resource>
-              <directory>${basedir}/src/webapp</directory>
-              <filtering>true</filtering>
-              <includes>
-                  <include>WEB-INF/classes/log4j.properties</include>
-                  <include>WEB-INF/classes/wsrp4j-config.properties</include>
-              </includes>
+                <directory>${basedir}/src/resources</directory>
+                <targetPath>org/apache/wsrp4j/consumer/configportlet/messages</targetPath>
+                <includes>
+                    <include>Messages.properties</include>
+                </includes>
             </resource>
-          </webResources>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-  <dependencies>
-    <dependency>
-      <artifactId>wsrp4j-commons-consumer</artifactId>
-      <groupId>org.apache.wsrp4j</groupId>
-      <version>${pom.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>wsrp4j-persistence-db</artifactId>
-      <groupId>org.apache.wsrp4j</groupId>
-      <version>${pom.version}</version>
-      <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <artifactId>wsrp4j-persistence-xml</artifactId>
-      <groupId>org.apache.wsrp4j</groupId>
-      <version>${pom.version}</version>
-      <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <artifactId>servlet-api</artifactId>
-      <groupId>javax.servlet</groupId>
-      <version>${servlet-api.version}</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-        <artifactId>portlet-api</artifactId>
-        <groupId>portlet-api</groupId>
-        <version>${portlet-api.version}</version>
-        <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <artifactId>log4j</artifactId>
-      <groupId>log4j</groupId>
-      <version>${log4j.version}</version>
-    </dependency>
-    <dependency>
-        <artifactId>jstl</artifactId>
-        <groupId>javax.servlet</groupId>
-        <version>${jstl.version}</version>
-    </dependency>
-    <dependency>
-        <artifactId>standard</artifactId>
-        <groupId>taglibs</groupId>
-        <version>${jstl.version}</version>
-    </dependency>
-    <dependency>
-        <artifactId>commons-beanutils</artifactId>
-        <groupId>commons-beanutils</groupId>
-        <version>${commons-beanutils.version}</version>
-    </dependency>
-    <dependency>
-        <artifactId>pluto</artifactId>
-        <groupId>org.apache.pluto</groupId>
-        <version>${pluto.version}</version>
-        <scope>provided</scope>
-    </dependency>
-  </dependencies>
+        </resources>
+        
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-war-plugin</artifactId>
+                <version>2.0</version>
+                <configuration>
+                    <warSourceDirectory>${basedir}/src/webapp</warSourceDirectory>
+                    <warName>${pom.artifactId}</warName>
+                    <webResources>
+                        <resource>
+                            <directory>${basedir}/src/webapp</directory>
+                            <filtering>true</filtering>
+                            <includes>
+                                <include>WEB-INF/classes/log4j.properties</include>
+                                <include>WEB-INF/classes/wsrp4j-config.properties</include>
+                            </includes>
+                        </resource>
+                    </webResources>
+                </configuration>
+            </plugin>            
+        </plugins>
+        
+    </build>
+    
+    <dependencies>
+        
+        <!-- Compile-time dependencies ============================ -->
+        
+        <dependency>
+            <artifactId>wsrp4j-commons-consumer</artifactId>
+            <groupId>org.apache.wsrp4j</groupId>
+            <version>${pom.version}</version>
+        </dependency>                
+        
+        <dependency>
+            <artifactId>log4j</artifactId>
+            <groupId>log4j</groupId>
+            <version>${log4j.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>jstl</artifactId>
+            <groupId>javax.servlet</groupId>
+            <version>${jstl.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>standard</artifactId>
+            <groupId>taglibs</groupId>
+            <version>${jstl.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>commons-beanutils</artifactId>
+            <groupId>commons-beanutils</groupId>
+            <version>${commons-beanutils.version}</version>
+        </dependency>
+        
+        <!-- Runtime dependencies ================================= -->
+        
+        <dependency>
+            <artifactId>wsrp4j-persistence-db</artifactId>
+            <groupId>org.apache.wsrp4j</groupId>
+            <version>${pom.version}</version>
+            <scope>runtime</scope>
+        </dependency>
+        
+        <dependency>
+            <artifactId>wsrp4j-persistence-xml</artifactId>
+            <groupId>org.apache.wsrp4j</groupId>
+            <version>${pom.version}</version>
+            <scope>runtime</scope>
+        </dependency>
+        
+        <!-- Provided dependencies ================================ -->
+        
+        <dependency>
+            <artifactId>pluto</artifactId>
+            <groupId>org.apache.pluto</groupId>
+            <version>${pluto.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        
+        <dependency>
+            <artifactId>servlet-api</artifactId>
+            <groupId>javax.servlet</groupId>
+            <version>${servlet-api.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        
+        <dependency>
+            <artifactId>portlet-api</artifactId>
+            <groupId>portlet-api</groupId>
+            <version>${portlet-api.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        
+    </dependencies>
+    
 </project>

Modified: portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml?view=diff&rev=567216&r1=567215&r2=567216
==============================================================================
--- portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml (original)
+++ portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml Fri Aug 17 20:00:05 2007
@@ -18,38 +18,46 @@
     | This is the main Maven file for wsrp4j-swingconsumer
     | @version $Id$
     +-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" 
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <parent>
-    <artifactId>wsrp4j</artifactId>
-    <groupId>org.apache.wsrp4j</groupId>
-    <version>0.4-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>wsrp4j-swingconsumer</artifactId>
-  <packaging>jar</packaging>
-  <name>WSRP4J SwingConsumer</name>
-  <description>
-    WSRP4J SwingConsumer is a standalone Swing application for consuming
-    remote WSRP services.
-  </description>
-  <build>
-    <sourceDirectory>src/java</sourceDirectory>
-    <finalName>${pom.artifactId}</finalName>
-    <resources>
-      <resource>
-        <directory>${basedir}/src/resources</directory>
-        <includes>
-          <include>wsrp4j-config.properties</include>
-          <include>log4j.properties</include>
-          <include>exception-mapping.properties</include>
-        </includes>
-      </resource>
-    </resources>
-    <plugins>
-      <!-- Enable this plugin uncommenting the code if you want to build
+<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">
+    
+    <parent>
+        <artifactId>wsrp4j</artifactId>
+        <groupId>org.apache.wsrp4j</groupId>
+        <version>0.4-SNAPSHOT</version>
+    </parent>
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <artifactId>wsrp4j-swingconsumer</artifactId>
+    <packaging>jar</packaging>
+    <name>WSRP4J SwingConsumer</name>
+    <description>
+        WSRP4J SwingConsumer is a standalone Swing application for consuming remote WSRP services.
+    </description>    
+    
+    <build>
+        
+        <sourceDirectory>src/java</sourceDirectory>
+        
+        <finalName>${pom.artifactId}</finalName>
+        
+        <resources>
+            <resource>
+                <directory>${basedir}/src/resources</directory>
+                <includes>
+                    <include>wsrp4j-config.properties</include>
+                    <include>log4j.properties</include>
+                    <include>exception-mapping.properties</include>
+                </includes>
+            </resource>
+        </resources>
+        
+        <plugins>
+            <!-- Enable this plugin uncommenting the code if you want to build
            an executable jar (java -jar) for swingconsumer. -->
-      <!--
+            <!--
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-assembly-plugin</artifactId>
@@ -74,70 +82,90 @@
         </executions>
       </plugin>
       -->
-    </plugins>
-  </build>
-  <dependencies>
-    <dependency>
-        <artifactId>wsrp4j-commons</artifactId>
-        <groupId>org.apache.wsrp4j</groupId>
-        <version>${pom.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>wsrp4j-commons-consumer</artifactId>
-      <groupId>org.apache.wsrp4j</groupId>
-      <version>${pom.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>wsrp4j-persistence-db</artifactId>
-      <groupId>org.apache.wsrp4j</groupId>
-      <version>${pom.version}</version>
-      <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <artifactId>wsrp4j-persistence-xml</artifactId>
-      <groupId>org.apache.wsrp4j</groupId>
-      <version>${pom.version}</version>
-      <scope>runtime</scope>
-    </dependency>    
-    <dependency>
-      <artifactId>axis-saaj</artifactId>
-      <groupId>org.apache.axis</groupId>
-      <version>${axis.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>wsdl4j</artifactId>
-      <groupId>wsdl4j</groupId>
-      <version>${wsdl4j.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>commons-discovery</artifactId>
-      <groupId>commons-discovery</groupId>
-      <version>${commons-discovery.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>log4j</artifactId>
-      <groupId>log4j</groupId>
-      <version>${log4j.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>xalan</artifactId>
-      <groupId>xalan</groupId>
-      <version>${xalan.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>xercesImpl</artifactId>
-      <groupId>xerces</groupId>
-      <version>${xerces.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>xml-apis</artifactId>
-      <groupId>xml-apis</groupId>
-      <version>${xml-apis.version}</version>
-    </dependency>
-    <!--dependency>
-      <artifactId>serializer</artifactId>
-      <groupId>xalan</groupId>
-      <version>${xalan.version}</version>
-    </dependency-->
-  </dependencies>
+        </plugins>
+        
+    </build>
+    
+    <dependencies>
+        
+        <!-- Compile-time dependencies ============================ -->
+                        
+        <dependency>
+            <artifactId>wsrp4j-commons</artifactId>
+            <groupId>org.apache.wsrp4j</groupId>
+            <version>${pom.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>wsrp4j-commons-consumer</artifactId>
+            <groupId>org.apache.wsrp4j</groupId>
+            <version>${pom.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>axis-saaj</artifactId>
+            <groupId>org.apache.axis</groupId>
+            <version>${axis.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>wsdl4j</artifactId>
+            <groupId>wsdl4j</groupId>
+            <version>${wsdl4j.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>commons-discovery</artifactId>
+            <groupId>commons-discovery</groupId>
+            <version>${commons-discovery.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>log4j</artifactId>
+            <groupId>log4j</groupId>
+            <version>${log4j.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>xalan</artifactId>
+            <groupId>xalan</groupId>
+            <version>${xalan.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>xercesImpl</artifactId>
+            <groupId>xerces</groupId>
+            <version>${xerces.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>xml-apis</artifactId>
+            <groupId>xml-apis</groupId>
+            <version>${xml-apis.version}</version>
+        </dependency>
+        
+        <!-- Runtime dependencies ================================= -->
+        
+        <dependency>
+            <artifactId>wsrp4j-persistence-db</artifactId>
+            <groupId>org.apache.wsrp4j</groupId>
+            <version>${pom.version}</version>
+            <scope>runtime</scope>
+        </dependency>
+        
+        <dependency>
+            <artifactId>wsrp4j-persistence-xml</artifactId>
+            <groupId>org.apache.wsrp4j</groupId>
+            <version>${pom.version}</version>
+            <scope>runtime</scope>
+        </dependency>
+        
+        <!--dependency>
+          <artifactId>serializer</artifactId>
+          <groupId>xalan</groupId>
+          <version>${xalan.version}</version>
+        </dependency-->
+        
+    </dependencies>
+    
 </project>

Modified: portals/wsrp4j/trunk/persistence-db/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/persistence-db/pom.xml?view=diff&rev=567216&r1=567215&r2=567216
==============================================================================
--- portals/wsrp4j/trunk/persistence-db/pom.xml (original)
+++ portals/wsrp4j/trunk/persistence-db/pom.xml Fri Aug 17 20:00:05 2007
@@ -18,57 +18,77 @@
     | This is the main Maven file for wsrp4j-persistence-db
     | @version $Id$
     +-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" 
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <parent>
-    <artifactId>wsrp4j</artifactId>
-    <groupId>org.apache.wsrp4j</groupId>
-    <version>0.4-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>wsrp4j-persistence-db</artifactId>
-  <packaging>jar</packaging>
-  <name>WSRP4J Persistence-DB</name>
-  <description>
-    WSRP4J Persistence-DB provides a database persistence mechanism for
-    producers and consumers.
-  </description>
-  <build>
-    <sourceDirectory>src/java</sourceDirectory>
-    <resources>
-      <resource>
-        <filtering>false</filtering>
-        <directory>${basedir}/src/resources</directory>
-      </resource>
-    </resources>
-  </build>
-  <dependencies>
-    <dependency>
-      <artifactId>wsrp4j-commons-consumer</artifactId>
-      <groupId>org.apache.wsrp4j</groupId>
-      <version>${pom.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>wsrp4j-commons-producer</artifactId>
-      <groupId>org.apache.wsrp4j</groupId>
-      <version>${pom.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>servlet-api</artifactId>
-      <groupId>javax.servlet</groupId>
-      <version>${servlet-api.version}</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <artifactId>portlet-api</artifactId>
-      <groupId>portlet-api</groupId>
-      <version>${portlet-api.version}</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-        <artifactId>hibernate</artifactId>
-        <groupId>org.hibernate</groupId>
-        <version>${hibernate.version}</version>
-    </dependency>
-  </dependencies>
+<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">
+    
+    <parent>
+        <artifactId>wsrp4j</artifactId>
+        <groupId>org.apache.wsrp4j</groupId>
+        <version>0.4-SNAPSHOT</version>
+    </parent>
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <artifactId>wsrp4j-persistence-db</artifactId>
+    <packaging>jar</packaging>
+    <name>WSRP4J Persistence-DB</name>
+    <description>
+        WSRP4J Persistence-DB provides a database persistence mechanism for producers and
+        consumers.
+    </description>
+    
+    <build>
+        
+        <sourceDirectory>src/java</sourceDirectory>
+        
+        <resources>
+            <resource>
+                <filtering>false</filtering>
+                <directory>${basedir}/src/resources</directory>
+            </resource>
+        </resources>
+        
+    </build>
+    
+    <dependencies>
+        
+        <!-- Compile-time dependencies ============================ -->
+        
+        <dependency>
+            <artifactId>wsrp4j-commons-consumer</artifactId>
+            <groupId>org.apache.wsrp4j</groupId>
+            <version>${pom.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>wsrp4j-commons-producer</artifactId>
+            <groupId>org.apache.wsrp4j</groupId>
+            <version>${pom.version}</version>
+        </dependency>
+                
+        <dependency>
+            <artifactId>hibernate</artifactId>
+            <groupId>org.hibernate</groupId>
+            <version>${hibernate.version}</version>
+        </dependency>
+        
+        <!-- Provided dependencies ================================ -->
+        
+        <dependency>
+            <artifactId>servlet-api</artifactId>
+            <groupId>javax.servlet</groupId>
+            <version>${servlet-api.version}</version>
+            <scope>provided</scope>
+        </dependency>                
+        
+        <dependency>
+            <artifactId>portlet-api</artifactId>
+            <groupId>portlet-api</groupId>
+            <version>${portlet-api.version}</version>
+            <scope>provided</scope>
+        </dependency>
+       
+    </dependencies>
+    
 </project>

Modified: portals/wsrp4j/trunk/persistence-xml/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/persistence-xml/pom.xml?view=diff&rev=567216&r1=567215&r2=567216
==============================================================================
--- portals/wsrp4j/trunk/persistence-xml/pom.xml (original)
+++ portals/wsrp4j/trunk/persistence-xml/pom.xml Fri Aug 17 20:00:05 2007
@@ -18,51 +18,69 @@
     | This is the main Maven file for wsrp4j-persistence-xml
     | @version $Id$
     +-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" 
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <parent>
-    <artifactId>wsrp4j</artifactId>
-    <groupId>org.apache.wsrp4j</groupId>
-    <version>0.4-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>wsrp4j-persistence-xml</artifactId>
-  <packaging>jar</packaging>
-  <name>WSRP4J Persistence-XML</name>
-  <description>
-    WSRP4J Persistence-XML provides an xml-based persistence mechanism for
-    producers and consumers.
-  </description>
-  <build>
-    <sourceDirectory>src/java</sourceDirectory>
-  </build>
-  <dependencies>
-    <dependency>
-      <artifactId>wsrp4j-commons-consumer</artifactId>
-      <groupId>org.apache.wsrp4j</groupId>
-      <version>${pom.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>wsrp4j-commons-producer</artifactId>
-      <groupId>org.apache.wsrp4j</groupId>
-      <version>${pom.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>castor</artifactId>
-      <groupId>castor</groupId>
-      <version>${castor.version}</version>
-    </dependency>
-    <dependency>
-       <artifactId>xercesImpl</artifactId>
-       <groupId>xerces</groupId>
-       <version>2.4.0</version>
-       <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <artifactId>servlet-api</artifactId>
-      <groupId>javax.servlet</groupId>
-      <version>${servlet-api.version}</version>
-      <scope>provided</scope>
-    </dependency>
-  </dependencies>
+<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">
+    
+    <parent>
+        <artifactId>wsrp4j</artifactId>
+        <groupId>org.apache.wsrp4j</groupId>
+        <version>0.4-SNAPSHOT</version>
+    </parent>
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <artifactId>wsrp4j-persistence-xml</artifactId>
+    <packaging>jar</packaging>
+    <name>WSRP4J Persistence-XML</name>
+    <description>
+        WSRP4J Persistence-XML provides an xml-based persistence mechanism for producers and consumers.
+    </description>
+    
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+    </build>
+    
+    <dependencies>
+        
+        <!-- Compile-time dependencies ============================ -->
+        
+        <dependency>
+            <artifactId>wsrp4j-commons-consumer</artifactId>
+            <groupId>org.apache.wsrp4j</groupId>
+            <version>${pom.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>wsrp4j-commons-producer</artifactId>
+            <groupId>org.apache.wsrp4j</groupId>
+            <version>${pom.version}</version>
+        </dependency>
+        
+        <dependency>
+            <artifactId>castor</artifactId>
+            <groupId>castor</groupId>
+            <version>${castor.version}</version>
+        </dependency>
+        
+        <!-- Runtime dependencies ================================= -->
+        
+        <dependency>
+            <artifactId>xercesImpl</artifactId>
+            <groupId>xerces</groupId>
+            <version>2.4.0</version>
+            <scope>runtime</scope>
+        </dependency>
+        
+        <!-- Provided dependencies ================================ -->
+        
+        <dependency>
+            <artifactId>servlet-api</artifactId>
+            <groupId>javax.servlet</groupId>
+            <version>${servlet-api.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        
+    </dependencies>
+    
 </project>

Modified: portals/wsrp4j/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/pom.xml?view=diff&rev=567216&r1=567215&r2=567216
==============================================================================
--- portals/wsrp4j/trunk/pom.xml (original)
+++ portals/wsrp4j/trunk/pom.xml Fri Aug 17 20:00:05 2007
@@ -18,228 +18,263 @@
     | This is the main Maven file for wsrp4j
     | @version $Id$
     +-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" 
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.wsrp4j</groupId>
-  <artifactId>wsrp4j</artifactId>
-  <packaging>pom</packaging>
-  <name>WSRP4J</name>
-  <version>0.4-SNAPSHOT</version>
-  <description>
-    WSRP4J is the Java language reference implementation of the OASIS WSRP
-    specification, which is a web services protocol for aggregating content
-    and interactive web applications from remote sources. WSRP allows
-    content and application providers to provide their services to
-    organizations running portals in a very easily consumable form.
-  </description>
-  <url>http://portals.apache.org/wsrp4j</url>
-  <issueManagement>
-    <system>JIRA</system>
-    <url>http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10464</url>
-  </issueManagement>    
-  <inceptionYear>2003</inceptionYear>
-  <mailingLists>
-    <mailingList>
-      <name>WSRP4J Developer List</name>
-      <subscribe>wsrp4j-dev-subscribe@portals.apache.org</subscribe>
-      <unsubscribe>wsrp4j-dev-unsubscribe@portals.apache.org</unsubscribe>
-      <archive>http://mail-archives.apache.org/mod_mbox/portals-wsrp4j-dev/</archive>
-    </mailingList>
-    <mailingList>
-      <name>WSRP4J User List</name>
-      <subscribe>wsrp4j-user-subscribe@portals.apache.org</subscribe>
-      <unsubscribe>wsrp4j-user-unsubscribe@portals.apache.org</unsubscribe>
-      <archive>http://mail-archives.apache.org/mod_mbox/portals-wsrp4j-user/</archive>
-    </mailingList>
-  </mailingLists>   
-  <developers>
-    <developer>
-      <id>rubys</id>
-      <name>Sam Ruby</name>
-      <email>rubys.at.apache.org</email>
-      <roles>
-        <role>Mentor</role>
-      </roles>
-    </developer>
-    <developer>
-      <id>dims</id>
-      <name>Davanum Srinivas</name>
-      <email>dims@apache.org</email>
-      <roles>
-        <role>Mentor</role>
-        <role>Committer</role>
-      </roles>
-    </developer>
-    <developer>
-      <id>jacob</id>
-      <name>Richard Jacob</name>
-      <email>jacob@apache.org</email>
-      <roles>
-        <role>Committer</role>
-      </roles>
-    </developer>
-    <developer>
-      <id>taylor</id>
-      <name>David Sean Taylor</name>
-      <email>taylor@apache.org</email>
-      <roles>
-        <role>Committer</role>
-      </roles>
-    </developer>
-    <developer>
-      <id>jmacna</id>
-      <name>Julie MacNaught</name>
-      <email>jmacna@apache.org</email>
-      <organization>IBM Research</organization>
-      <organizationUrl>http://www.research.ibm.com/</organizationUrl>
-      <roles>
-        <role>Committer</role>
-      </roles>
-      <timezone>-4</timezone>
-    </developer>
-    <developer>
-      <id>behl</id>
-      <name>Stefan Behl</name>
-      <email>behl@apache.org</email>
-      <roles>
-        <role>Committer</role>
-      </roles>
-    </developer>
-    <developer>
-      <id>cziegeler</id>
-      <name>Carsten Ziegeler</name>
-      <email>cziegeler@apache.org</email>
-      <roles>
-        <role>Committer</role>
-      </roles>
-    </developer>
-    <developer>
-      <id>pfisher</id>
-      <name>Peter Fischer</name>
-      <email>pfisher@apache.org</email>
-      <roles>
-        <role>Committer</role>
-      </roles>
-    </developer>
-    <developer>
-      <id>sgala</id>
-      <name>Santiago Gala</name>
-      <email>sgala@apache.org</email>
-      <roles>
-        <role>Committer</role>
-      </roles>
-    </developer>
-    <developer>
-      <id>acoliver</id>
-      <name>Andrew C. Oliver</name>
-      <email>acoliver@apache.org</email>
-      <roles>
-        <role>Committer</role>
-      </roles>
-    </developer>
-    <developer>
-      <id>sgoldstain</id>
-      <name>Scott Goldstein</name>
-      <email>sgoldstain@apache.org</email>
-      <roles>
-        <role>Committer</role>
-      </roles>
-    </developer>
-    <developer>
-      <id>dlouzan</id>
-      <name>Diego Louzán</name>
-      <email>dlouzan@apache.org</email>
-      <url>http://wiki.apache.org/general/DiegoLouzan</url>
-      <organization>University of A Coruña</organization>
-      <organizationUrl>http://www.fi.udc.es/</organizationUrl>
-      <roles>
-        <role>Committer</role>
-      </roles>
-      <timezone>Europe/Madrid</timezone>
-    </developer>
-  </developers>
-  <contributors>
-    <contributor>
-      <name>Vishal Goenka</name>
-      <email>vgoenka@sungardsct.com</email>
-    </contributor>
-    <contributor>
-      <name>Michel Alessandrini</name>
-      <email>wsrp@gmx-topmail.de</email>
-    </contributor>
-    <contributor>
-        <name>Sandy Pérez</name>
-        <email>sperezgonza@yahoo.es</email>
-    </contributor>
-  </contributors>
-  <licenses>
-    <license>
-      <name>Apache License, Version 2.0</name>
-      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-      <distribution>repo</distribution>
-    </license>
-  </licenses>
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/portals/wsrp4j/trunk</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/wsrp4j/trunk</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/portals/wsrp4j/trunk/</url>
-  </scm>
-  <organization>
-    <name>Apache Software Foundation</name>
-    <url>http://portals.apache.org/</url>
-  </organization>
-  <properties>
-    <!-- Dependency Version Properties -->
-    <axis.version>1.4</axis.version>
-    <castor.version>0.9.6</castor.version>
-    <commons-beanutils.version>1.7.0</commons-beanutils.version>
-    <commons-discovery.version>0.2</commons-discovery.version>
-    <commons-fileupload.version>1.1.1</commons-fileupload.version>
-    <commons-lang.version>2.1</commons-lang.version>
-    <commons-logging.version>1.0.4</commons-logging.version>
-    <hibernate.version>3.2.1.ga</hibernate.version>
-    <javax-mail.version>1.4</javax-mail.version>
-    <jstl.version>1.0.6</jstl.version>
-    <junit.version>3.8.1</junit.version>
-    <log4j.version>1.2.13</log4j.version>
-    <pluto.version>1.0.1</pluto.version>
-    <portlet-api.version>1.0</portlet-api.version>
-    <servlet-api.version>2.3</servlet-api.version>
-    <wsdl4j.version>1.5.1</wsdl4j.version>
-    <xalan.version>2.7.0</xalan.version>
-    <xerces.version>2.6.0</xerces.version>
-    <xml-apis.version>1.0.b2</xml-apis.version>
-  </properties>
-  <modules>
-    <module>commons</module>
-    <module>commons-consumer</module>
-    <module>commons-producer</module>
-    <module>consumer-proxyportlet</module>
-    <module>consumer-swingconsumer</module>
-    <module>persistence-db</module>
-    <module>persistence-xml</module>
-    <module>producer</module>
-    <module>testportlet</module>
-  </modules>
-  <build>
-    <filters>
-        <!-- Environment properties file -->
-        <!-- For now, set the properties conf using a relative path
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <groupId>org.apache.wsrp4j</groupId>
+    <artifactId>wsrp4j</artifactId>
+    <packaging>pom</packaging>
+    <name>WSRP4J</name>    
+    <version>0.4-SNAPSHOT</version>
+
+    <organization>
+        <name>Apache Software Foundation</name>
+        <url>http://portals.apache.org/</url>
+    </organization>
+    <inceptionYear>2003</inceptionYear>
+    
+    <url>http://portals.apache.org/wsrp4j</url>
+    
+    <description> 
+        WSRP4J is the Java language reference implementation of the OASIS WSRP
+        specification, which is a web services protocol for aggregating content and interactive web
+        applications from remote sources. WSRP allows content and application providers to provide
+        their services to organizations running portals in a very easily consumable form. 
+    </description>
+    
+    <issueManagement>
+        <system>JIRA</system>
+        <url>http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10464</url>
+    </issueManagement>
+    
+    <licenses>
+        <license>
+            <name>Apache License, Version 2.0</name>
+            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
+    
+    <modules>
+        <module>commons</module>
+        <module>commons-consumer</module>
+        <module>commons-producer</module>
+        <module>consumer-proxyportlet</module>
+        <module>consumer-swingconsumer</module>
+        <module>persistence-db</module>
+        <module>persistence-xml</module>
+        <module>producer</module>
+        <module>testportlet</module>
+    </modules>
+    
+    <properties>
+        <!-- Dependency Version Properties -->
+        <axis.version>1.4</axis.version>
+        <castor.version>0.9.6</castor.version>
+        <commons-beanutils.version>1.7.0</commons-beanutils.version>
+        <commons-discovery.version>0.2</commons-discovery.version>
+        <commons-fileupload.version>1.1.1</commons-fileupload.version>
+        <commons-lang.version>2.1</commons-lang.version>
+        <commons-logging.version>1.0.4</commons-logging.version>
+        <hibernate.version>3.2.1.ga</hibernate.version>
+        <javax-mail.version>1.4</javax-mail.version>
+        <jstl.version>1.0.6</jstl.version>
+        <junit.version>3.8.1</junit.version>
+        <log4j.version>1.2.13</log4j.version>
+        <pluto.version>1.0.1</pluto.version>
+        <portlet-api.version>1.0</portlet-api.version>
+        <servlet-api.version>2.3</servlet-api.version>
+        <wsdl4j.version>1.5.1</wsdl4j.version>
+        <xalan.version>2.7.0</xalan.version>
+        <xerces.version>2.6.0</xerces.version>
+        <xml-apis.version>1.0.b2</xml-apis.version>
+    </properties>
+
+    <build>
+        <filters>
+            <!-- Environment properties file -->
+            <!-- For now, set the properties conf using a relative path
              for using with the submodules. Try to find a system property
              for the parent base dir, like ${basedir} but for the parent -->
-        <filter>../build.properties</filter>
-    </filters>
-    <plugins>
-        <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-compiler-plugin</artifactId>
-            <configuration>
-                <!-- Force 1.4 code -->
-                <source>1.4</source>
-                <target>1.4</target>
-            </configuration>
-        </plugin>
-    </plugins>
-  </build>
+            <filter>../build.properties</filter>
+        </filters>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <!-- Force 1.4 code -->
+                    <source>1.4</source>
+                    <target>1.4</target>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/wsrp4j/trunk</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/wsrp4j/trunk</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/wsrp4j/trunk/</url>
+    </scm>
+    
+    <mailingLists>
+        
+        <mailingList>
+            <name>WSRP4J Developer List</name>
+            <subscribe>wsrp4j-dev-subscribe@portals.apache.org</subscribe>
+            <unsubscribe>wsrp4j-dev-unsubscribe@portals.apache.org</unsubscribe>
+            <archive>http://mail-archives.apache.org/mod_mbox/portals-wsrp4j-dev/</archive>
+        </mailingList>
+        
+        <mailingList>
+            <name>WSRP4J User List</name>
+            <subscribe>wsrp4j-user-subscribe@portals.apache.org</subscribe>
+            <unsubscribe>wsrp4j-user-unsubscribe@portals.apache.org</unsubscribe>
+            <archive>http://mail-archives.apache.org/mod_mbox/portals-wsrp4j-user/</archive>
+        </mailingList>
+        
+    </mailingLists>
+    
+    <developers>
+        
+        <developer>
+            <id>rubys</id>
+            <name>Sam Ruby</name>
+            <email>rubys.at.apache.org</email>
+            <roles>
+                <role>Mentor</role>
+            </roles>
+        </developer>
+        
+        <developer>
+            <id>dims</id>
+            <name>Davanum Srinivas</name>
+            <email>dims@apache.org</email>
+            <roles>
+                <role>Mentor</role>
+                <role>Committer</role>
+            </roles>
+        </developer>
+        
+        <developer>
+            <id>jacob</id>
+            <name>Richard Jacob</name>
+            <email>jacob@apache.org</email>
+            <roles>
+                <role>Committer</role>
+            </roles>
+        </developer>
+        
+        <developer>
+            <id>taylor</id>
+            <name>David Sean Taylor</name>
+            <email>taylor@apache.org</email>
+            <roles>
+                <role>Committer</role>
+            </roles>
+        </developer>
+        
+        <developer>
+            <id>jmacna</id>
+            <name>Julie MacNaught</name>
+            <email>jmacna@apache.org</email>
+            <organization>IBM Research</organization>
+            <organizationUrl>http://www.research.ibm.com/</organizationUrl>
+            <roles>
+                <role>Committer</role>
+            </roles>
+            <timezone>-4</timezone>
+        </developer>
+        
+        <developer>
+            <id>behl</id>
+            <name>Stefan Behl</name>
+            <email>behl@apache.org</email>
+            <roles>
+                <role>Committer</role>
+            </roles>
+        </developer>
+        
+        <developer>
+            <id>cziegeler</id>
+            <name>Carsten Ziegeler</name>
+            <email>cziegeler@apache.org</email>
+            <roles>
+                <role>Committer</role>
+            </roles>
+        </developer>
+        
+        <developer>
+            <id>pfisher</id>
+            <name>Peter Fischer</name>
+            <email>pfisher@apache.org</email>
+            <roles>
+                <role>Committer</role>
+            </roles>
+        </developer>
+        
+        <developer>
+            <id>sgala</id>
+            <name>Santiago Gala</name>
+            <email>sgala@apache.org</email>
+            <roles>
+                <role>Committer</role>
+            </roles>
+        </developer>
+        
+        <developer>
+            <id>acoliver</id>
+            <name>Andrew C. Oliver</name>
+            <email>acoliver@apache.org</email>
+            <roles>
+                <role>Committer</role>
+            </roles>
+        </developer>
+        
+        <developer>
+            <id>sgoldstain</id>
+            <name>Scott Goldstein</name>
+            <email>sgoldstain@apache.org</email>
+            <roles>
+                <role>Committer</role>
+            </roles>
+        </developer>
+        
+        <developer>
+            <id>dlouzan</id>
+            <name>Diego Louzán</name>
+            <email>dlouzan@apache.org</email>
+            <url>http://wiki.apache.org/general/DiegoLouzan</url>
+            <organization>University of A Coruña</organization>
+            <organizationUrl>http://www.fi.udc.es/</organizationUrl>
+            <roles>
+                <role>Committer</role>
+            </roles>
+            <timezone>Europe/Madrid</timezone>
+        </developer>
+        
+    </developers>
+    
+    <contributors>
+        
+        <contributor>
+            <name>Vishal Goenka</name>
+            <email>vgoenka@sungardsct.com</email>
+        </contributor>
+        
+        <contributor>
+            <name>Michel Alessandrini</name>
+            <email>wsrp@gmx-topmail.de</email>
+        </contributor>
+        
+        <contributor>
+            <name>Sandy Pérez</name>
+            <email>sperezgonza@yahoo.es</email>
+        </contributor>
+        
+    </contributors>
+    
 </project>

Modified: portals/wsrp4j/trunk/producer/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/producer/pom.xml?view=diff&rev=567216&r1=567215&r2=567216
==============================================================================
--- portals/wsrp4j/trunk/producer/pom.xml (original)
+++ portals/wsrp4j/trunk/producer/pom.xml Fri Aug 17 20:00:05 2007
@@ -29,6 +29,7 @@
     </parent>
     
     <modelVersion>4.0.0</modelVersion>
+    
     <artifactId>wsrp4j-producer</artifactId>
     <packaging>war</packaging>
     <name>WSRP4J Producer</name>
@@ -86,7 +87,7 @@
     
     <dependencies>
         
-        <!-- = Compile ========================================== -->
+        <!-- Compile-time dependencies ============================ -->
         
         <dependency>
             <artifactId>wsrp4j-commons-producer</artifactId>
@@ -154,7 +155,7 @@
             <version>${jstl.version}</version>
         </dependency>
         
-        <!-- = Runtime ============================================ -->
+        <!-- Runtime dependencies ================================= -->
         
         <dependency>
             <artifactId>wsrp4j-persistence-db</artifactId>
@@ -170,7 +171,7 @@
             <scope>runtime</scope>
         </dependency>
         
-        <!-- = Provided ========================================= -->
+        <!-- Provided dependencies ================================ -->
         
         <dependency>
             <artifactId>portlet-api</artifactId>

Modified: portals/wsrp4j/trunk/testportlet/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/testportlet/pom.xml?view=diff&rev=567216&r1=567215&r2=567216
==============================================================================
--- portals/wsrp4j/trunk/testportlet/pom.xml (original)
+++ portals/wsrp4j/trunk/testportlet/pom.xml Fri Aug 17 20:00:05 2007
@@ -18,38 +18,52 @@
     | This is the main Maven file for wsrp4j-testportlet
     | @version $Id$
     +-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" 
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <parent>
-    <artifactId>wsrp4j</artifactId>
-    <groupId>org.apache.wsrp4j</groupId>
-    <version>0.4-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>wsrp4j-testportlet</artifactId>
-  <packaging>war</packaging>
-  <name>WSRP4J Test Portlet</name>
-  <description>WSRP Test Portlet is an example JSR-168 portlet for testing purposes.</description>
-  <build>
-    <sourceDirectory>src/java</sourceDirectory>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-war-plugin</artifactId>
-        <version>2.0</version>
-        <configuration>
-          <warSourceDirectory>src/webapp</warSourceDirectory>
-          <warName>${pom.artifactId}</warName>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-  <dependencies>
-    <dependency>
-      <artifactId>portlet-api</artifactId>
-      <groupId>portlet-api</groupId>
-      <version>${portlet-api.version}</version>
-      <scope>provided</scope>
-    </dependency>
-  </dependencies>
+<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">
+    
+    <parent>
+        <artifactId>wsrp4j</artifactId>
+        <groupId>org.apache.wsrp4j</groupId>
+        <version>0.4-SNAPSHOT</version>
+    </parent>
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <artifactId>wsrp4j-testportlet</artifactId>
+    <packaging>war</packaging>
+    <name>WSRP4J Test Portlet</name>
+    <description>WSRP Test Portlet is an example JSR-168 portlet for testing purposes.</description>
+    
+    <build>
+        
+        <sourceDirectory>src/java</sourceDirectory>
+        
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-war-plugin</artifactId>
+                <version>2.0</version>
+                <configuration>
+                    <warSourceDirectory>src/webapp</warSourceDirectory>
+                    <warName>${pom.artifactId}</warName>
+                </configuration>
+            </plugin>
+        </plugins>
+        
+    </build>
+    
+    <dependencies>
+        
+        <!-- Provided dependencies ================================ -->
+        
+        <dependency>
+            <artifactId>portlet-api</artifactId>
+            <groupId>portlet-api</groupId>
+            <version>${portlet-api.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        
+    </dependencies>
+    
 </project>