You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bridges-commits@portals.apache.org by ta...@apache.org on 2006/10/26 03:36:57 UTC

svn commit: r467827 - in /portals/bridges/trunk: applications/pom.xml applications/springmvc/pom.xml common/pom.xml frameworks/pom.xml jsf/pom.xml mapserver/pom.xml perl/pom.xml php/pom.xml pom.xml portletfilter/pom.xml struts/pom.xml velocity/pom.xml

Author: taylor
Date: Wed Oct 25 18:36:56 2006
New Revision: 467827

URL: http://svn.apache.org/viewvc?view=rev&rev=467827
Log:
Maven-2 Build for Portals Bridges, ongoing
wrote POMs for all bridges, and 1 of 5 applications

Added:
    portals/bridges/trunk/applications/pom.xml
    portals/bridges/trunk/applications/springmvc/pom.xml
    portals/bridges/trunk/common/pom.xml
    portals/bridges/trunk/frameworks/pom.xml
    portals/bridges/trunk/jsf/pom.xml
    portals/bridges/trunk/mapserver/pom.xml
    portals/bridges/trunk/perl/pom.xml
    portals/bridges/trunk/php/pom.xml
    portals/bridges/trunk/pom.xml
    portals/bridges/trunk/portletfilter/pom.xml
    portals/bridges/trunk/struts/pom.xml
    portals/bridges/trunk/velocity/pom.xml

Added: portals/bridges/trunk/applications/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/pom.xml?view=auto&rev=467827
==============================================================================
--- portals/bridges/trunk/applications/pom.xml (added)
+++ portals/bridges/trunk/applications/pom.xml Wed Oct 25 18:36:56 2006
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright 2006 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.
+
+  $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>
+    <prerequisites>
+        <maven>2.0.4</maven>
+    </prerequisites>
+
+    <!-- POM Identification -->
+
+    <artifactId>portals-bridges-applications</artifactId>
+    <parent>
+        <groupId>org.apache.portals.bridges</groupId>
+        <artifactId>portals-bridges</artifactId>
+        <version>1.0.1-dev</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>pom</packaging>
+    <name>Bridges Applications</name>
+    <description>
+        Bridges Applications
+    </description>
+
+    <!-- Application Modules -->
+
+    <modules>
+        <module>springmvc</module>
+<!--        
+        <module>jpetstore</module>
+        <module>jsf-demo</module>
+        <module>perl</module>
+        <module>php</module>        
+    -->
+    </modules>
+
+    <!-- Application Dependencies -->
+
+    <dependencies>
+        <!-- Provided Dependencies -->
+        <dependency>
+            <groupId>portlet-api</groupId>
+            <artifactId>portlet-api</artifactId>
+            <scope>provided</scope>            
+        </dependency>
+    </dependencies>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/bridges/trunk/applications</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/bridges/trunk/applications</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/bridges/trunk/applications/</url>
+    </scm>
+
+</project>

Added: portals/bridges/trunk/applications/springmvc/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/springmvc/pom.xml?view=auto&rev=467827
==============================================================================
--- portals/bridges/trunk/applications/springmvc/pom.xml (added)
+++ portals/bridges/trunk/applications/springmvc/pom.xml Wed Oct 25 18:36:56 2006
@@ -0,0 +1,121 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright 2006 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.
+
+  $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>
+    <prerequisites>
+        <maven>2.0.4</maven>
+    </prerequisites>
+
+    <!-- POM Identification -->
+
+    <artifactId>springmvc-demo</artifactId>
+    <parent>
+        <groupId>org.apache.portals.bridges</groupId>
+        <artifactId>portals-bridges-applications</artifactId>
+        <version>1.0.1-dev</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>war</packaging>
+    <name>Spring Portlet Jetspeed Application</name>
+    <description>
+        Spring Portlet Jetspeed Application
+    </description>
+
+    <!-- Application Dependencies -->
+    <dependencies>
+        <!-- Provided Dependencies -->
+        <dependency>
+            <groupId>portlet-api</groupId>
+            <artifactId>portlet-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-beans</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-context</artifactId>
+        </dependency>            
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-portlet</artifactId>
+        </dependency>            
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-web</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-webmvc</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>jstl</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>taglibs</groupId>
+            <artifactId>standard</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+        </dependency>               
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+        </dependency>               
+        <dependency>
+            <groupId>org.apache.portals.jetspeed-2</groupId>
+            <artifactId>portals-gems</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>velocity</groupId>
+            <artifactId>velocity</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>velocity-tools</groupId>
+            <artifactId>velocity-tools</artifactId>
+        </dependency>
+        
+    </dependencies>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/bridges/trunk/applications/springmvc</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/bridges/trunk/applications/springmvc</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/bridges/trunk/applications/springmvc/</url>
+    </scm>
+
+</project>

Added: portals/bridges/trunk/common/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/common/pom.xml?view=auto&rev=467827
==============================================================================
--- portals/bridges/trunk/common/pom.xml (added)
+++ portals/bridges/trunk/common/pom.xml Wed Oct 25 18:36:56 2006
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright 2006 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.
+
+  $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>
+    <prerequisites>
+        <maven>2.0.4</maven>
+    </prerequisites>
+
+    <!-- POM Identification -->
+
+    <artifactId>portals-bridges-common</artifactId>
+    <parent>
+        <groupId>org.apache.portals.bridges</groupId>
+        <artifactId>portals-bridges</artifactId>
+        <version>1.0.1-dev</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>jar</packaging>
+    <name>Portals Bridges Common</name>
+    <description>
+        Apache Portals Bridges Common Utilties and Interfaces
+    </description>
+
+    <!-- Dependencies -->
+
+    <dependencies/>
+    
+    <!-- Build Configuration -->
+
+    <build/>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/bridges/trunk/common</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/bridges/trunk/common</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/bridges/trunk/common/</url>
+    </scm>
+
+</project>

Added: portals/bridges/trunk/frameworks/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/frameworks/pom.xml?view=auto&rev=467827
==============================================================================
--- portals/bridges/trunk/frameworks/pom.xml (added)
+++ portals/bridges/trunk/frameworks/pom.xml Wed Oct 25 18:36:56 2006
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright 2006 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.
+
+  $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>
+    <prerequisites>
+        <maven>2.0.4</maven>
+    </prerequisites>
+
+    <!-- POM Identification -->
+
+    <artifactId>portals-bridges-frameworks</artifactId>
+    <parent>
+        <groupId>org.apache.portals.bridges</groupId>
+        <artifactId>portals-bridges</artifactId>
+        <version>1.0.1-dev</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>jar</packaging>
+    <name>Portals Bridges Framework</name>
+    <description>
+        Apache Portals Bridges Frameworks
+    </description>
+
+    <!-- Dependencies -->
+
+    <dependencies>
+        <dependency>
+            <groupId>velocity</groupId>
+            <artifactId>velocity</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>velocity-tools</groupId>
+            <artifactId>velocity-tools</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-beans</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-beanutils</groupId>
+            <artifactId>commons-beanutils</artifactId>
+        </dependency>   
+        <dependency>
+            <groupId>commons-validator</groupId>
+            <artifactId>commons-validator</artifactId>
+        </dependency>             
+       <dependency>
+         <groupId>org.apache.portals.bridges</groupId>
+         <artifactId>portals-bridges-common</artifactId>
+         <version>${pom.version}</version>
+      </dependency>
+       <dependency>
+         <groupId>org.apache.portals.bridges</groupId>
+         <artifactId>portals-bridges-velocity</artifactId>
+         <version>${pom.version}</version>           
+      </dependency>
+        
+    </dependencies>
+    
+    <!-- Build Configuration -->
+
+    <build/>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/bridges/trunk/frameworks</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/bridges/trunk/frameworks</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/bridges/trunk/frameworks/</url>
+    </scm>
+
+</project>

Added: portals/bridges/trunk/jsf/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/jsf/pom.xml?view=auto&rev=467827
==============================================================================
--- portals/bridges/trunk/jsf/pom.xml (added)
+++ portals/bridges/trunk/jsf/pom.xml Wed Oct 25 18:36:56 2006
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright 2006 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.
+
+  $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>
+    <prerequisites>
+        <maven>2.0.4</maven>
+    </prerequisites>
+
+    <!-- POM Identification -->
+
+    <artifactId>portals-bridges-jsf</artifactId>
+    <parent>
+        <groupId>org.apache.portals.bridges</groupId>
+        <artifactId>portals-bridges</artifactId>
+        <version>1.0.1-dev</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>jar</packaging>
+    <name>JSF Bridge</name>
+    <description>
+        Apache Portals JSF Bridge
+    </description>
+
+    <!-- Dependencies -->
+
+    <dependencies>
+        <dependency>
+            <groupId>myfaces</groupId>
+            <artifactId>myfaces-api</artifactId>
+        </dependency>                           
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>             
+       <dependency>
+         <groupId>org.apache.portals.bridges</groupId>
+         <artifactId>portals-bridges-common</artifactId>
+         <version>${pom.version}</version>
+      </dependency>        
+    </dependencies>
+    
+    <!-- Build Configuration -->
+
+    <build/>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/bridges/trunk/jsf</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/bridges/trunk/jsf</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/bridges/trunk/jsf/</url>
+    </scm>
+
+</project>

Added: portals/bridges/trunk/mapserver/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/mapserver/pom.xml?view=auto&rev=467827
==============================================================================
--- portals/bridges/trunk/mapserver/pom.xml (added)
+++ portals/bridges/trunk/mapserver/pom.xml Wed Oct 25 18:36:56 2006
@@ -0,0 +1,79 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright 2006 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.
+
+  $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>
+    <prerequisites>
+        <maven>2.0.4</maven>
+    </prerequisites>
+
+    <!-- POM Identification -->
+
+    <artifactId>portals-bridges-mapserver</artifactId>
+    <parent>
+        <groupId>org.apache.portals.bridges</groupId>
+        <artifactId>portals-bridges</artifactId>
+        <version>1.0.1-dev</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>jar</packaging>
+    <name>Apache Portals MapServer Bridge</name>
+    <description>
+        Apache Portals MapServer Bridge
+    </description>
+  <developers>
+    <developer>
+      <name>Philip Mark Donaghy</name>
+      <id>phil</id>
+      <email>philip.donaghy@gmail.com</email>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+  </developers>
+
+    <!-- Dependencies -->
+
+    <dependencies>
+       <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+       </dependency>             
+       <dependency>
+         <groupId>org.apache.portals.bridges</groupId>
+         <artifactId>portals-bridges-common</artifactId>
+         <version>${pom.version}</version>
+      </dependency>        
+    </dependencies>
+    
+    <!-- Build Configuration -->
+
+    <build/>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/bridges/trunk/mapserver</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/bridges/trunk/mapserver</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/bridges/trunk/mapserver/</url>
+    </scm>
+
+</project>

Added: portals/bridges/trunk/perl/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/perl/pom.xml?view=auto&rev=467827
==============================================================================
--- portals/bridges/trunk/perl/pom.xml (added)
+++ portals/bridges/trunk/perl/pom.xml Wed Oct 25 18:36:56 2006
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright 2006 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.
+
+  $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>
+    <prerequisites>
+        <maven>2.0.4</maven>
+    </prerequisites>
+
+    <!-- POM Identification -->
+
+    <artifactId>portals-bridges-perl</artifactId>
+    <parent>
+        <groupId>org.apache.portals.bridges</groupId>
+        <artifactId>portals-bridges</artifactId>
+        <version>1.0.1-dev</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>jar</packaging>
+    <name>Apache Portals Perl Framework Bridge</name>
+    <description>
+        Apache Portals Perl Framework Bridge
+    </description>
+
+    <!-- Dependencies -->
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.portals.jetspeed-2</groupId>
+            <artifactId>jetspeed-rewriter</artifactId>
+        </dependency>                           
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>             
+       <dependency>
+         <groupId>org.apache.portals.bridges</groupId>
+         <artifactId>portals-bridges-common</artifactId>
+         <version>${pom.version}</version>
+      </dependency>        
+    </dependencies>
+    
+    <!-- Build Configuration -->
+
+    <build/>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/bridges/trunk/perl</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/bridges/trunk/perl</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/bridges/trunk/perl/</url>
+    </scm>
+
+</project>

Added: portals/bridges/trunk/php/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/php/pom.xml?view=auto&rev=467827
==============================================================================
--- portals/bridges/trunk/php/pom.xml (added)
+++ portals/bridges/trunk/php/pom.xml Wed Oct 25 18:36:56 2006
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright 2006 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.
+
+  $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>
+    <prerequisites>
+        <maven>2.0.4</maven>
+    </prerequisites>
+
+    <!-- POM Identification -->
+
+    <artifactId>portals-bridges-php</artifactId>
+    <parent>
+        <groupId>org.apache.portals.bridges</groupId>
+        <artifactId>portals-bridges</artifactId>
+        <version>1.0.1-dev</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>jar</packaging>
+    <name>Apache Portals PHP Framework Bridge</name>
+    <description>
+        Apache Portals PHP Framework Bridge
+    </description>
+
+    <!-- Dependencies -->
+
+    <dependencies>
+        <dependency>
+            <groupId>itgroundwork</groupId>
+            <artifactId>phpportlet</artifactId>
+        </dependency>                           
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>             
+       <dependency>
+         <groupId>org.apache.portals.bridges</groupId>
+         <artifactId>portals-bridges-common</artifactId>
+         <version>${pom.version}</version>
+      </dependency>        
+    </dependencies>
+    
+    <!-- Build Configuration -->
+
+    <build/>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/bridges/trunk/perl</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/bridges/trunk/perl</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/bridges/trunk/perl/</url>
+    </scm>
+
+</project>

Added: portals/bridges/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/pom.xml?view=auto&rev=467827
==============================================================================
--- portals/bridges/trunk/pom.xml (added)
+++ portals/bridges/trunk/pom.xml Wed Oct 25 18:36:56 2006
@@ -0,0 +1,656 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright 2006 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.
+
+  $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>
+    <prerequisites>
+        <maven>2.0.4</maven>
+    </prerequisites>
+
+    <!-- POM Identification -->
+
+    <groupId>org.apache.portals.bridges</groupId>
+    <artifactId>portals-bridges</artifactId>
+    <version>1.0.1-dev</version>
+    <packaging>pom</packaging>
+    <name>Portals Bridges</name>
+    <description>
+      Portals Bridges provides support for JSR-168 compliant Portlet development
+      using common web frameworks like Struts, JSF, PHP, Perl and Velocity
+    </description>
+
+    <!-- Profiles -->
+
+    <profiles>
+
+        <!-- Test Profiles -->
+        <profile>
+            <id>test</id>
+            <activation>
+                <property>
+                    <name>maven.test.skip</name>
+                    <value>false</value>
+                </property>
+            </activation>
+            <properties>
+                <maven.test.skip>false</maven.test.skip>
+                <org.apache.jetspeed.env.skip.test>false</org.apache.jetspeed.env.skip.test>
+            </properties>
+        </profile>
+
+        <!-- Production Profile -->
+        <profile>
+            <id>prod</id>
+            <properties>
+                <org.apache.jetspeed.env.skip.production>false</org.apache.jetspeed.env.skip.production>
+            </properties>
+        </profile>
+
+    </profiles>
+
+    <!-- Properties -->
+
+    <properties>
+
+        <!-- Default Build Properties -->
+        <maven.test.skip>true</maven.test.skip>
+        <jetspeed.version>2.1-dev</jetspeed.version>
+        <javax.servlet.version>2.3</javax.servlet.version>
+        <junit.version>3.8.1</junit.version>
+        <portlet-api.version>1.0</portlet-api.version>
+        <!--
+            Bug: using specific version of surefire plugin
+            to ensure test isolation for spring test cases;
+            specifically connection datasource management.
+        -->
+        <org.apache.maven.plugins.maven-surefire-plugin.version>2.1.3</org.apache.maven.plugins.maven-surefire-plugin.version>
+        <velocity-tools.version>1.1</velocity-tools.version>
+        <velocity.version>1.4</velocity.version>
+        <spring.version>2.0</spring.version>
+        <commons-beanutils.version>1.7.0</commons-beanutils.version>
+        <commons-validator.version>1.1.3</commons-validator.version>
+        <commons-digester.version>1.5</commons-digester.version>
+        <commons-logging.version>1.0.4</commons-logging.version>
+        <commons-collections.version>3.0</commons-collections.version>
+        
+        <struts.version>1.2.7</struts.version>
+        <myfaces.version>1.1.4</myfaces.version>
+        <tomahawk.version>1.1.4</tomahawk.version>
+        <javax.servlet.jstl.version>1.0.6</javax.servlet.jstl.version>
+        <taglibs-standard.version>1.0.6</taglibs-standard.version>
+        <log4j.version>1.2.8</log4j.version>
+        
+    </properties>
+
+    <!-- Default Modules -->
+
+    <modules>
+        <!-- Base Modules -->
+        <module>common</module>
+
+        <!-- Components -->
+        <module>velocity</module>                
+        <module>frameworks</module>
+        <module>struts</module>        
+        <module>jsf</module>
+        <module>perl</module>        
+        <module>php</module>        
+        <module>portletfilter</module>                
+        <module>mapserver</module>
+        
+        <!-- Applications -->
+        <module>applications</module> 
+
+    </modules>
+
+    <!-- Repositories -->
+
+    <repositories>
+        <repository>
+            <id>com.bluesunrise.m2</id>
+            <name>Maven2 BlueSunrise</name>
+            <url>http://www.bluesunrise.com/maven2</url>
+        </repository>
+        <repository>
+            <id>central</id>
+            <name>Maven Repository Switchboard</name>
+            <url>http://repo1.maven.org/maven2</url>
+        </repository>
+        <repository>
+            <id>com.bluesunrise.m1</id>
+            <name>Maven1 BlueSunrise</name>
+            <url>http://www.bluesunrise.com/maven</url>
+            <layout>legacy</layout>
+        </repository>
+        <repository>
+            <id>org.codehaus</id>
+            <name>Maven1 Codehaus</name>
+            <url>http://dist.codehaus.org</url>
+            <layout>legacy</layout>
+        </repository>
+        <repository>
+            <id>org.apache</id>
+            <name>Maven1 Apache</name>
+            <url>http://www.ibiblio.org/maven2</url>
+            <layout>legacy</layout>
+        </repository>
+    </repositories>
+    <pluginRepositories>
+        <pluginRepository>
+            <releases>
+                <updatePolicy>never</updatePolicy>
+            </releases>
+            <id>com.bluesunrise.m2</id>
+            <name>Maven2 BlueSunrise Plugin</name>
+            <url>http://www.bluesunrise.com/maven2</url>
+        </pluginRepository>
+        <pluginRepository>
+            <releases>
+                <updatePolicy>never</updatePolicy>
+            </releases>
+            <id>central</id>
+            <name>Maven Plugin Repository</name>
+            <url>http://repo1.maven.org/maven2</url>
+        </pluginRepository>
+    </pluginRepositories>
+    
+    <!-- Dependency Configuration -->
+
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.apache.portals.jetspeed-2</groupId>
+                <artifactId>jetspeed-api</artifactId>
+                <version>${jetspeed.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>javax.servlet</groupId>
+                <artifactId>servlet-api</artifactId>
+                <version>${javax.servlet.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <version>${junit.version}</version>
+                <scope>test</scope>
+                <exclusions>
+                    <exclusion>
+                        <groupId>junit-addons</groupId>
+                        <artifactId>junit-addons-runner</artifactId>
+                    </exclusion>
+                </exclusions>
+            </dependency>      
+            <dependency>
+                <groupId>portlet-api</groupId>
+                <artifactId>portlet-api</artifactId>
+                <version>${portlet-api.version}</version>
+            </dependency>
+        <dependency>
+            <groupId>commons-beanutils</groupId>
+            <artifactId>commons-beanutils</artifactId>
+            <version>${commons-beanutils.version}</version>
+        </dependency>   
+        <dependency>
+            <groupId>commons-validator</groupId>
+            <artifactId>commons-validator</artifactId>
+            <version>${commons-validator.version}</version>
+        </dependency>               
+        <dependency>
+            <groupId>commons-digester</groupId>
+            <artifactId>commons-digester</artifactId>
+            <version>${commons-digester.version}</version>
+        </dependency>                      
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>${commons-logging.version}</version>
+        </dependency>              
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <version>${commons-collections.version}</version>
+        </dependency>               
+        <dependency>
+          <groupId>struts</groupId>
+          <artifactId>struts</artifactId>
+          <version>${struts.version}</version>
+       </dependency>            
+        <dependency>
+          <groupId>struts</groupId>
+          <artifactId>struts-el</artifactId>
+          <version>${struts.version}</version>
+       </dependency>                        
+        <dependency>
+            <groupId>velocity</groupId>
+            <artifactId>velocity</artifactId>
+            <version>${velocity.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>velocity-tools</groupId>
+            <artifactId>velocity-tools</artifactId>
+            <version>${velocity-tools.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-core</artifactId>
+            <version>${spring.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-beans</artifactId>
+            <version>${spring.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-context</artifactId>
+            <version>${spring.version}</version>
+        </dependency>            
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-portlet</artifactId>
+            <version>${spring.version}</version>
+        </dependency>            
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-web</artifactId>
+            <version>${spring.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-webmvc</artifactId>
+            <version>${spring.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-mock</artifactId>
+            <version>${spring.version}</version>
+        </dependency>            
+        <dependency>
+            <groupId>myfaces</groupId>
+            <artifactId>myfaces-api</artifactId>
+            <version>${myfaces.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.portals.jetspeed-2</groupId>
+            <artifactId>jetspeed-rewriter</artifactId>
+            <version>${jetspeed.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>itgroundwork</groupId>
+            <artifactId>phpportlet</artifactId>
+            <version>1.0</version>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>jstl</artifactId>
+            <version>${javax.servlet.jstl.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>taglibs</groupId>
+            <artifactId>standard</artifactId>
+            <version>${taglibs-standard.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>${log4j.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.portals.jetspeed-2</groupId>
+            <artifactId>portals-gems</artifactId>
+            <version>${jetspeed.version}</version>
+        </dependency>
+            
+        </dependencies>
+    </dependencyManagement>    
+
+    <!-- Global Build Configuration -->
+
+    <build>
+
+        <!-- J2 Standard Directories -->
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+        <outputDirectory>target/classes</outputDirectory>
+        <testOutputDirectory>target/test-classes</testOutputDirectory>
+        <directory>target</directory>
+        <defaultGoal>install</defaultGoal>
+
+        <!-- Resources -->
+        <resources>
+            <resource>
+                <directory>src/java</directory>
+                <excludes>
+                    <exclude>**/*.java</exclude>
+                </excludes>
+            </resource>
+        </resources>
+
+        <!-- Test Resources -->
+        <testResources>
+            <testResource>
+                <directory>src/java</directory>
+                <excludes>
+                    <exclude>**/*.java</exclude>
+                    <exclude>**/JETSPEED-INF/**</exclude>
+                </excludes>
+            </testResource>
+            <testResource>
+                <directory>src/test</directory>
+                <excludes>
+                    <exclude>**/*.java</exclude>
+                </excludes>
+            </testResource>
+        </testResources>
+
+        <!-- Plugin Configuration -->
+        <pluginManagement>    
+            <plugins>
+
+                <!-- Compiler -->
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-compiler-plugin</artifactId>
+                    <configuration>
+                        <source>1.4</source>
+                        <target>1.4</target>
+                        <debug>true</debug>
+                        <showDeprecation>true</showDeprecation>
+                        <showWarnings>true</showWarnings>
+                        <optimize>false</optimize>
+                    </configuration>
+                </plugin>
+
+                <!-- Tests -->
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-surefire-plugin</artifactId>
+                    <version>${org.apache.maven.plugins.maven-surefire-plugin.version}</version>
+                    <configuration>
+                        <includes>
+                            <include>**/Test*.java</include>
+                        </includes>
+                    </configuration>
+                </plugin>
+
+                <!-- WAR plugin -->
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-war-plugin</artifactId>
+                    <configuration>
+                        <warSourceDirectory>src/webapp</warSourceDirectory>
+                    </configuration>
+                </plugin> 
+
+                <!-- antrun plugin -->
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-antrun-plugin</artifactId>
+                    <dependencies>
+
+                        <!-- Ant -->
+                        <dependency>
+                            <groupId>ant</groupId>
+                            <artifactId>ant</artifactId>
+                            <version>${ant.version}</version>
+                        </dependency>
+                        <dependency>
+                            <groupId>ant</groupId>
+                            <artifactId>ant-launcher</artifactId>
+                            <version>${ant.version}</version>
+                        </dependency>
+                        <dependency>
+                            <groupId>ant</groupId>
+                            <artifactId>ant-nodeps</artifactId>
+                            <version>${ant.version}</version>
+                        </dependency>
+
+                        <!-- Maven AntLib -->
+                        <dependency>
+                            <groupId>org.apache.maven</groupId>
+                            <artifactId>maven-artifact-ant</artifactId>
+                            <version>${org.apache.maven.artifact.ant.version}</version>
+                        </dependency>
+
+                        <!-- Torque -->
+                        <dependency>
+                            <groupId>torque</groupId>
+                            <artifactId>torque</artifactId>
+                            <version>${torque.version}</version>
+                            <exclusions>
+                                <exclusion>
+                                    <groupId>jndi</groupId>
+                                    <artifactId>jndi</artifactId>
+                                </exclusion>
+                                <exclusion>
+                                    <groupId>javax.sql</groupId>
+                                    <artifactId>jdbc-stdext</artifactId>
+                                </exclusion>
+                            </exclusions>
+                        </dependency>
+                        <dependency>
+                            <groupId>torque</groupId>
+                            <artifactId>torque-gen</artifactId>
+                            <version>${torque.version}</version>
+                        </dependency>
+                        <dependency>
+                            <groupId>torque</groupId>
+                            <artifactId>torque-gen-templates</artifactId>
+                            <version>${torque.version}</version>
+                        </dependency>
+
+                        <!-- J2 Build -->
+                        <dependency>
+                            <groupId>${pom.groupId}</groupId>
+                            <artifactId>ant-tasks</artifactId>
+                            <version>${pom.version}</version>
+                        </dependency>
+
+                    </dependencies>
+                </plugin>
+
+            </plugins>
+        </pluginManagement>    
+
+        <plugins>
+        </plugins>
+
+    </build>
+
+    <!-- Global Dependencies -->
+
+    <dependencies>
+
+        <!-- Provided Dependencies -->
+        <dependency>
+            <groupId>portlet-api</groupId>
+            <artifactId>portlet-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <!-- Test Dependencies -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+
+    <!-- Project Information -->
+
+    <url>http://portals.apache.org/bridges</url>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/bridges/trunk</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/bridges/trunk</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/bridges/trunk/</url>
+    </scm>
+
+    <issueManagement>
+        <system>JIRA</system>
+        <url>http://issues.apache.org/jira/browse/PB</url>
+    </issueManagement>
+
+    <mailingLists>
+        <mailingList>
+            <name>Portals Bridges User List</name>
+            <subscribe>bridges-user-subscribe@portals.apache.org</subscribe>
+            <unsubscribe>bridges-user-unsubscribe@portals.apache.org</unsubscribe>
+            <archive>http://mail-archives.apache.org/mod_mbox/portals-bridges-user/</archive>
+        </mailingList>
+        <mailingList>
+            <name>Portals Bridges Developer List</name>
+            <subscribe>bridges-dev-subscribe@portals.apache.org</subscribe>
+            <unsubscribe>bridges-dev-unsubscribe@portals.apache.org</unsubscribe>
+            <archive>http://mail-archives.apache.org/mod_mbox/portals-bridges-dev/</archive>
+        </mailingList>
+        <mailingList>
+            <name>Portals Bridges SCM List</name>
+            <subscribe>bridges-commits-subscribe@portals.apache.org</subscribe>
+            <unsubscribe>bridges-commits-unsubscribe@portals.apache.org</unsubscribe>
+            <archive>http://mail-archives.apache.org/mod_mbox/portals-bridges-commits/</archive>
+        </mailingList>        
+    </mailingLists>
+
+    <organization>
+        <name>Apache Software Foundation</name>
+        <url>http://portals.apache.org/</url>
+    </organization>
+
+    <inceptionYear>1999</inceptionYear>
+
+    <developers>
+        <developer>
+            <name>David Sean Taylor</name>
+            <id>taylor</id>
+            <email>taylor@apache.org</email>
+            <roles>
+                <role>Java Developer</role>
+            </roles>
+        </developer>
+        <developer>
+            <name>Raphael Luta</name>
+            <id>raphael</id>
+            <email>raphael@apache.org</email>
+            <roles>
+                <role>Java Developer</role>
+            </roles>
+        </developer>
+        <developer>
+            <name>Mark Orciuch</name>
+            <id>mark</id>
+            <email>mark_oriuch@nqsltd.com</email>
+            <roles>
+                <role>Java Developer</role>
+            </roles>
+        </developer>
+        <developer>
+            <name>Paul Spencer</name>
+            <id>paulsp</id>
+            <email>paulsp@apache.org</email>
+            <roles>
+                <role>Java Developer</role>
+            </roles>
+        </developer>
+        <developer>
+            <name>Scott Weaver</name>
+            <id>weaver</id>
+            <email>Sweaver@rippe.com</email>
+            <roles>
+                <role>Java Developer</role>
+            </roles>
+        </developer>
+        <developer>
+            <name>Roger Ruttimann</name>
+            <id>roger</id>
+            <email>rogerrut@apache.org</email>
+            <roles>
+                <role>Java Developer</role>
+            </roles>
+        </developer>
+        <developer>
+            <name>David Le Strat</name>
+            <id>dls</id>
+            <email>dlestrat@apache.org</email>
+            <roles>
+                <role>Java Developer</role>
+            </roles>
+        </developer>
+        <developer>
+            <name>Jeremy Ford</name>
+            <id>jford</id>
+            <email>jford@apache.org</email>
+            <roles>
+                <role>Java Developer</role>
+            </roles>
+        </developer>
+        <developer>
+            <name>Ate Douma</name>
+            <id>ate</id>
+            <email>ate@apache.org</email>
+            <timezone>+2</timezone>
+            <organization>iWise B.V.</organization>
+            <roles>
+                <role>Java Developer</role>
+            </roles>
+        </developer>
+        <developer>
+            <name>Shinsuke Sugaya</name>
+            <id>shinsuke</id>
+            <email>shinsuke@apache.org</email>
+            <roles>
+                <role>Java Developer</role>
+            </roles>
+        </developer>
+        <developer>
+            <name>Randy Watler</name>
+            <id>rwatler</id>
+            <email>rwatler@apache.org</email>
+            <timezone>-6</timezone>
+            <roles>
+                <role>Java Developer</role>
+            </roles>
+        </developer>
+        <developer>
+            <name>Steve Milek</name>
+            <id>smilek</id>
+            <email>smilek@apache.org</email>
+            <timezone>-6</timezone>
+            <roles>
+                <role>Java Developer</role>
+            </roles>
+        </developer>        
+    </developers>
+
+    <licenses>
+        <license>
+            <name>Apache License, Version 2.0</name>
+            <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
+
+</project>

Added: portals/bridges/trunk/portletfilter/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/portletfilter/pom.xml?view=auto&rev=467827
==============================================================================
--- portals/bridges/trunk/portletfilter/pom.xml (added)
+++ portals/bridges/trunk/portletfilter/pom.xml Wed Oct 25 18:36:56 2006
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright 2006 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.
+
+  $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>
+    <prerequisites>
+        <maven>2.0.4</maven>
+    </prerequisites>
+
+    <!-- POM Identification -->
+
+    <artifactId>portals-bridges-portletfilter</artifactId>
+    <parent>
+        <groupId>org.apache.portals.bridges</groupId>
+        <artifactId>portals-bridges</artifactId>
+        <version>1.0.1-dev</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>jar</packaging>
+    <name>Apache Portals Portlet Filter</name>
+    <description>
+        Apache Portals Portlet Filter
+    </description>
+  <developers>
+    <developer>
+      <name>Shinsuke Sugaya</name>
+      <id>shinsuke</id>
+      <email>shinsuke@apache.org</email>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+  </developers>
+
+    <!-- Dependencies -->
+
+    <dependencies>
+        <dependency>
+            <groupId>portlet-api</groupId>
+            <artifactId>portlet-api</artifactId>
+        </dependency>                           
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>             
+    </dependencies>
+    
+    <!-- Build Configuration -->
+
+    <build/>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/bridges/trunk/portletfilter</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/bridges/trunk/portletfilter</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/bridges/trunk/portletfilter/</url>
+    </scm>
+
+</project>

Added: portals/bridges/trunk/struts/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/struts/pom.xml?view=auto&rev=467827
==============================================================================
--- portals/bridges/trunk/struts/pom.xml (added)
+++ portals/bridges/trunk/struts/pom.xml Wed Oct 25 18:36:56 2006
@@ -0,0 +1,92 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright 2006 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.
+
+  $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>
+    <prerequisites>
+        <maven>2.0.4</maven>
+    </prerequisites>
+
+    <!-- POM Identification -->
+
+    <artifactId>portals-bridges-struts</artifactId>
+    <parent>
+        <groupId>org.apache.portals.bridges</groupId>
+        <artifactId>portals-bridges</artifactId>
+        <version>1.0.1-dev</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>jar</packaging>
+    <name>Apache Portals Struts Bridge</name>
+    <description>
+        Apache Portals Struts Bridge
+    </description>
+  <developers>
+    <developer>
+      <name>Ate Douma</name>
+      <id>ate</id>
+      <email>ate@douma.nu</email>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+  </developers>
+
+    <!-- Dependencies -->
+
+    <dependencies>
+        <dependency>
+            <groupId>commons-digester</groupId>
+            <artifactId>commons-digester</artifactId>
+        </dependency>                           
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>             
+       <dependency>
+         <groupId>org.apache.portals.bridges</groupId>
+         <artifactId>portals-bridges-common</artifactId>
+         <version>${pom.version}</version>
+      </dependency>
+       <dependency>
+         <groupId>struts</groupId>
+         <artifactId>struts</artifactId>
+      </dependency>
+       <dependency>
+         <groupId>struts</groupId>
+         <artifactId>struts-el</artifactId>
+      </dependency>
+        
+    </dependencies>
+    
+    <!-- Build Configuration -->
+
+    <build/>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/bridges/trunk/struts</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/bridges/trunk/struts</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/bridges/trunk/struts/</url>
+    </scm>
+
+</project>

Added: portals/bridges/trunk/velocity/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/velocity/pom.xml?view=auto&rev=467827
==============================================================================
--- portals/bridges/trunk/velocity/pom.xml (added)
+++ portals/bridges/trunk/velocity/pom.xml Wed Oct 25 18:36:56 2006
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright 2006 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.
+
+  $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>
+    <prerequisites>
+        <maven>2.0.4</maven>
+    </prerequisites>
+
+    <!-- POM Identification -->
+
+    <artifactId>portals-bridges-velocity</artifactId>
+    <parent>
+        <groupId>org.apache.portals.bridges</groupId>
+        <artifactId>portals-bridges</artifactId>
+        <version>1.0.1-dev</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>jar</packaging>
+    <name>Portals Bridges Velocity Bridge</name>
+    <description>
+        Apache Portals Bridges Velocity Bridge
+    </description>
+
+    <!-- Dependencies -->
+
+    <dependencies>
+        <dependency>
+            <groupId>velocity</groupId>
+            <artifactId>velocity</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>velocity-tools</groupId>
+            <artifactId>velocity-tools</artifactId>
+        </dependency>
+       <dependency>
+         <groupId>org.apache.portals.bridges</groupId>
+         <artifactId>portals-bridges-common</artifactId>
+         <version>${pom.version}</version>
+      </dependency>        
+    </dependencies>
+    
+    <!-- Build Configuration -->
+
+    <build/>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/bridges/trunk/velocity</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/bridges/trunk/velocity</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/bridges/trunk/velocity/</url>
+    </scm>
+
+</project>



---------------------------------------------------------------------
To unsubscribe, e-mail: bridges-commits-unsubscribe@portals.apache.org
For additional commands, e-mail: bridges-commits-help@portals.apache.org