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 2007/02/23 05:18:40 UTC

svn commit: r510804 - in /portals/bridges/trunk: ./ applications/ applications/jpetstore/ applications/jsf-demo/ applications/perl/ applications/php/ applications/springmvc/ applications/springmvc/src/webapp/WEB-INF/ jsf/src/java/org/apache/portals/bri...

Author: taylor
Date: Thu Feb 22 20:18:39 2007
New Revision: 510804

URL: http://svn.apache.org/viewvc?view=rev&rev=510804
Log:
completed Maven-2 build for Bridges

Added:
    portals/bridges/trunk/applications/jpetstore/pom.xml
    portals/bridges/trunk/applications/jsf-demo/pom.xml
    portals/bridges/trunk/applications/perl/pom.xml
    portals/bridges/trunk/applications/php/pom.xml
Modified:
    portals/bridges/trunk/applications/pom.xml
    portals/bridges/trunk/applications/springmvc/pom.xml
    portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/jetspeed-portlet.xml
    portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/FacesPortlet.java
    portals/bridges/trunk/pom.xml
    portals/bridges/trunk/project.properties

Added: portals/bridges/trunk/applications/jpetstore/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jpetstore/pom.xml?view=auto&rev=510804
==============================================================================
--- portals/bridges/trunk/applications/jpetstore/pom.xml (added)
+++ portals/bridges/trunk/applications/jpetstore/pom.xml Thu Feb 22 20:18:39 2007
@@ -0,0 +1,134 @@
+<?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>jpetstore</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>iBATIS JPetstore Demo Portlet</name>
+    <description>
+        iBATIS JPetstore Demo Portlet
+    </description>
+
+    <!-- Application Dependencies -->
+    <dependencies>
+    <!-- Provided Dependencies -->
+    <dependency>
+        <groupId>log4j</groupId>
+        <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>antlr</groupId>
+      <artifactId>antlr</artifactId>
+      <version>2.7.2</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
+      <version>1.7.0</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-digester</groupId>
+      <artifactId>commons-digester</artifactId>
+      <version>1.6</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+      <version>1.0</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-validator</groupId>
+      <artifactId>commons-validator</artifactId>
+      <version>1.1.4</version>
+    </dependency>
+    <dependency>
+      <groupId>oro</groupId>
+      <artifactId>oro</artifactId>
+      <version>2.0.7</version>
+    </dependency>
+    <dependency>
+      <groupId>taglibs</groupId>
+      <artifactId>standard</artifactId>
+      <version>1.0.6</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>ibatis</groupId>
+      <artifactId>ibatis-common</artifactId>
+      <version>2.0.8</version>
+    </dependency>
+    <dependency>
+      <groupId>ibatis</groupId>
+      <artifactId>ibatis-dao</artifactId>
+      <version>2.0.8</version>
+    </dependency>
+    <dependency>
+      <groupId>ibatis</groupId>
+      <artifactId>ibatis-sqlmap</artifactId>
+      <version>2.0.8</version>
+    </dependency>
+    <dependency>
+      <groupId>hsqldb</groupId>
+      <artifactId>hsqldb</artifactId>
+      <version>1.7.1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.portals.bridges</groupId>
+      <artifactId>portals-bridges-struts</artifactId>
+      <version>${struts.version}-${portals.bridges.struts.version}</version>
+    </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/applications/jsf-demo/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/jsf-demo/pom.xml?view=auto&rev=510804
==============================================================================
--- portals/bridges/trunk/applications/jsf-demo/pom.xml (added)
+++ portals/bridges/trunk/applications/jsf-demo/pom.xml Thu Feb 22 20:18:39 2007
@@ -0,0 +1,127 @@
+<?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>jsf-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>JSF Demo Portlet APP</name>
+    <description>
+        JSF Demo Portlet Application
+    </description>
+
+    <!-- Application Dependencies -->
+    <dependencies>
+    <!-- Provided Dependencies -->
+    <dependency>
+        <groupId>log4j</groupId>
+        <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
+      <version>1.7.0</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+      <version>1.3</version>
+    </dependency>
+   <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>3.1</version>
+    </dependency>
+   <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+      <version>2.1</version>
+    </dependency>
+     <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+      <version>1.0</version>
+    </dependency>
+     <dependency>
+      <groupId>commons-digester</groupId>
+      <artifactId>commons-digester</artifactId>
+      <version>1.6</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-validator</groupId>
+      <artifactId>commons-validator</artifactId>
+      <version>1.2.0</version>
+    </dependency>
+   <dependency>
+      <groupId>commons-el</groupId>
+      <artifactId>commons-el</artifactId>
+      <version>1.0</version>
+    </dependency>
+    <dependency>
+      <groupId>jstl</groupId>
+      <artifactId>jstl</artifactId>
+      <version>1.1.0</version>
+    </dependency>
+     <dependency>
+         <groupId>myfaces</groupId>
+         <artifactId>myfaces-api</artifactId>
+     </dependency>                           
+     <dependency>
+         <groupId>myfaces</groupId>
+         <artifactId>myfaces-impl</artifactId>
+     </dependency>                           
+     <dependency>
+         <groupId>myfaces</groupId>
+         <artifactId>tomahawk</artifactId>
+     </dependency>                           
+    
+    <dependency>
+      <groupId>org.apache.portals.bridges</groupId>
+      <artifactId>portals-bridges-jsf</artifactId>
+      <version>${org.apache.portals.bridges.jsf.version}</version>
+    </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/applications/perl/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/perl/pom.xml?view=auto&rev=510804
==============================================================================
--- portals/bridges/trunk/applications/perl/pom.xml (added)
+++ portals/bridges/trunk/applications/perl/pom.xml Thu Feb 22 20:18:39 2007
@@ -0,0 +1,70 @@
+<?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>perl</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>Perl Bridge Application</name>
+    <description>
+        Perl Bridge Application
+    </description>
+
+    <!-- Application Dependencies -->
+    <dependencies>
+        <!-- Provided Dependencies -->
+        <dependency>
+            <groupId>org.apache.portals.jetspeed-2</groupId>
+            <artifactId>jetspeed-rewriter</artifactId>
+            <version>${jetspeed.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>castor</groupId>
+            <artifactId>castor</artifactId>
+            <version>${castor.version}</version>
+        </dependency>
+	   <dependency>
+	       <groupId>commons-logging</groupId>
+	       <artifactId>commons-logging</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/applications/php/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/php/pom.xml?view=auto&rev=510804
==============================================================================
--- portals/bridges/trunk/applications/php/pom.xml (added)
+++ portals/bridges/trunk/applications/php/pom.xml Thu Feb 22 20:18:39 2007
@@ -0,0 +1,115 @@
+<?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>php</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>PHP Bridge Application</name>
+    <description>
+        PHP Bridge Application
+    </description>
+
+    <!-- Application Dependencies -->
+    <dependencies>
+        <!-- Provided Dependencies -->
+     <dependency>
+        <groupId>log4j</groupId>
+        <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+    </dependency>       
+       <dependency>
+            <groupId>itgroundwork</groupId>
+            <artifactId>phpportlet</artifactId>
+        </dependency>                           
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>             
+     <dependency>
+      <groupId>jstl</groupId>
+      <artifactId>jstl</artifactId>
+      <version>1.0.6</version>
+    </dependency>
+   <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>2.1</version>
+    </dependency>
+   <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+      <version>2.0</version>
+    </dependency>
+     <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+      <version>1.0</version>
+    </dependency>
+     <dependency>
+      <groupId>commons-digester</groupId>
+      <artifactId>commons-digester</artifactId>
+      <version>1.5</version>
+    </dependency>
+     <dependency>
+      <groupId>commons-validator</groupId>
+      <artifactId>commons-validator</artifactId>
+      <version>1.1.2</version>
+    </dependency>
+    
+        
+       <dependency>
+         <groupId>org.apache.portals.bridges</groupId>
+         <artifactId>portals-bridges-common</artifactId>
+         <version>${org.apache.portals.bridges.common.version}</version>
+      </dependency>        
+       <dependency>
+         <groupId>org.apache.portals.bridges</groupId>
+         <artifactId>portals-bridges-php</artifactId>
+         <version>${org.apache.portals.bridges.php.version}</version>
+      </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>

Modified: portals/bridges/trunk/applications/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/pom.xml?view=diff&rev=510804&r1=510803&r2=510804
==============================================================================
--- portals/bridges/trunk/applications/pom.xml (original)
+++ portals/bridges/trunk/applications/pom.xml Thu Feb 22 20:18:39 2007
@@ -44,12 +44,10 @@
 
     <modules>
         <module>springmvc</module>
-<!--        
-        <module>jpetstore</module>
-        <module>jsf-demo</module>
+        <module>jpetstore</module>
+        <module>jsf-demo</module>       
         <module>perl</module>
-        <module>php</module>        
-    -->
+        <module>php</module>        
     </modules>
 
     <!-- Application Dependencies -->

Modified: portals/bridges/trunk/applications/springmvc/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/springmvc/pom.xml?view=diff&rev=510804&r1=510803&r2=510804
==============================================================================
--- portals/bridges/trunk/applications/springmvc/pom.xml (original)
+++ portals/bridges/trunk/applications/springmvc/pom.xml Thu Feb 22 20:18:39 2007
@@ -1,121 +1,115 @@
-<?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>
+<?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>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>org.apache.portals.jetspeed-2</groupId>
+            <artifactId>portals-gems</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>velocity</groupId>
+            <artifactId>velocity</artifactId>
+            <scope>runtime</scope>            
+        </dependency>
+        <dependency>
+            <groupId>velocity-tools</groupId>
+            <artifactId>velocity-tools</artifactId>
+            <scope>runtime</scope>
+        </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>

Modified: portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/jetspeed-portlet.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/jetspeed-portlet.xml?view=diff&rev=510804&r1=510803&r2=510804
==============================================================================
--- portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/jetspeed-portlet.xml (original)
+++ portals/bridges/trunk/applications/springmvc/src/webapp/WEB-INF/jetspeed-portlet.xml Thu Feb 22 20:18:39 2007
@@ -26,5 +26,4 @@
 	<js:services>        
         <js:service name='HeaderResource'/>   
 	</js:services>
-
 </portlet-app>

Modified: portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/FacesPortlet.java
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/FacesPortlet.java?view=diff&rev=510804&r1=510803&r2=510804
==============================================================================
--- portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/FacesPortlet.java (original)
+++ portals/bridges/trunk/jsf/src/java/org/apache/portals/bridges/jsf/FacesPortlet.java Thu Feb 22 20:18:39 2007
@@ -531,17 +531,15 @@
         {
             key = key + ":" + view;
         }
-        System.out.println("$A$$ name spacin ");
         PortletResponse response = (PortletResponse)context.getExternalContext().getResponse();
         if (!(response instanceof RenderResponse))
         {
-            System.out.println("$A$$ cant modify namespace on action response ");
+            log.error("Cant encode action response");
         }
         else
         {
             RenderResponse rr = (RenderResponse)response;
             key = key + rr.getNamespace();
-            System.out.println("$A$$ render response " + key);            
         }
         return key;
     }

Modified: portals/bridges/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/pom.xml?view=diff&rev=510804&r1=510803&r2=510804
==============================================================================
--- portals/bridges/trunk/pom.xml (original)
+++ portals/bridges/trunk/pom.xml Thu Feb 22 20:18:39 2007
@@ -91,13 +91,25 @@
         <commons-logging.version>1.0.4</commons-logging.version>
         <commons-collections.version>3.0</commons-collections.version>
         
+        <jetspeed.version>2.1-dev</jetspeed.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>
+        <castor.version>0.9.4.3</castor.version>
         
+        <org.apache.portals.bridges.common.version>1.0.1-dev</org.apache.portals.bridges.common.version>
+        <org.apache.portals.bridges.frameworks.version>1.0.1-dev</org.apache.portals.bridges.frameworks.version>
+        <org.apache.portals.bridges.jpetstore.version>1.0.1-dev</org.apache.portals.bridges.jpetstore.version>
+        <org.apache.portals.bridges.jsf-demo.version>1.0.1-dev</org.apache.portals.bridges.jsf-demo.version>
+        <org.apache.portals.bridges.jsf.version>1.0.1-dev</org.apache.portals.bridges.jsf.version>
+        <org.apache.portals.bridges.perl.version>1.0.1-dev</org.apache.portals.bridges.perl.version>
+        <org.apache.portals.bridges.php.version>1.0.1-dev</org.apache.portals.bridges.php.version>
+        <org.apache.portals.bridges.velocity.version>1.0.1-dev</org.apache.portals.bridges.velocity.version>
+        <org.apache.portals.bridges.portletfilter.version>1.0.1-dev</org.apache.portals.bridges.portletfilter.version>        
+        <portals.bridges.struts.version>1.0.1-dev</portals.bridges.struts.version>
     </properties>
 
     <!-- Default Modules -->
@@ -288,6 +300,17 @@
             <artifactId>myfaces-api</artifactId>
             <version>${myfaces.version}</version>
         </dependency>
+        <dependency>
+            <groupId>myfaces</groupId>
+            <artifactId>myfaces-impl</artifactId>
+            <version>${myfaces.version}</version>
+        </dependency>
+         <dependency>
+            <groupId>myfaces</groupId>
+            <artifactId>tomahawk</artifactId>
+            <version>${tomahawk.version}</version>
+        </dependency>
+       
         <dependency>
             <groupId>org.apache.portals.jetspeed-2</groupId>
             <artifactId>jetspeed-rewriter</artifactId>

Modified: portals/bridges/trunk/project.properties
URL: http://svn.apache.org/viewvc/portals/bridges/trunk/project.properties?view=diff&rev=510804&r1=510803&r2=510804
==============================================================================
--- portals/bridges/trunk/project.properties (original)
+++ portals/bridges/trunk/project.properties Thu Feb 22 20:18:39 2007
@@ -84,15 +84,15 @@
 maven.changelog.factory=org.apache.maven.svnlib.SvnChangeLogFactory
 
 # bridges versions 
-portals.bridges.version=1.0
+portals.bridges.version=1.0.1-dev
 portals.bridges.common.version=1.0.1-dev
 portals.bridges.frameworks.version=1.0.1-dev
 portals.bridges.jsf.version=1.0.1-dev
-portals.bridges.perl.version=1.0
-portals.bridges.php.version=1.0
-portals.bridges.python.version=1.0
+portals.bridges.perl.version=1.0.1-dev
+portals.bridges.php.version=1.0.1-dev
+portals.bridges.python.version=1.0.1-dev
 portals.bridges.struts.version=1.0.1-dev
-portals.bridges.velocity.version=1.0
+portals.bridges.velocity.version=1.0.1-dev
 portals.bridges.portletfilter.version=1.0.1-dev
 
 # dependency versions 



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