You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by rw...@apache.org on 2006/02/09 09:58:13 UTC

svn commit: r376230 - in /portals/jetspeed-2/trunk: ./ applications/ applications/demo/ applications/gems/ applications/j2-admin/ applications/rss/ applications/rss/rss-jar/ applications/rss/rss-war/ components/ components/cm/ components/portal/ compon...

Author: rwatler
Date: Thu Feb  9 00:58:08 2006
New Revision: 376230

URL: http://svn.apache.org/viewcvs?rev=376230&view=rev
Log:
maven2 checkpoint: implement applications builds

Added:
    portals/jetspeed-2/trunk/applications/demo/pom.xml   (with props)
    portals/jetspeed-2/trunk/applications/gems/pom.xml   (with props)
    portals/jetspeed-2/trunk/applications/j2-admin/pom.xml   (with props)
    portals/jetspeed-2/trunk/applications/pom.xml   (with props)
    portals/jetspeed-2/trunk/applications/rss/pom.xml   (with props)
    portals/jetspeed-2/trunk/applications/rss/rss-jar/
    portals/jetspeed-2/trunk/applications/rss/rss-jar/pom.xml   (with props)
    portals/jetspeed-2/trunk/applications/rss/rss-war/
    portals/jetspeed-2/trunk/applications/rss/rss-war/pom.xml   (with props)
    portals/jetspeed-2/trunk/taglibs/pom.xml   (with props)
    portals/jetspeed-2/trunk/taglibs/treecontrol/pom.xml   (with props)
Modified:
    portals/jetspeed-2/trunk/components/cm/pom.xml
    portals/jetspeed-2/trunk/components/pom.xml
    portals/jetspeed-2/trunk/components/portal/pom.xml
    portals/jetspeed-2/trunk/components/serializer/pom.xml
    portals/jetspeed-2/trunk/components/web-content/pom.xml
    portals/jetspeed-2/trunk/layout-portlets/pom.xml
    portals/jetspeed-2/trunk/pom.xml

Added: portals/jetspeed-2/trunk/applications/demo/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/applications/demo/pom.xml?rev=376230&view=auto
==============================================================================
--- portals/jetspeed-2/trunk/applications/demo/pom.xml (added)
+++ portals/jetspeed-2/trunk/applications/demo/pom.xml Thu Feb  9 00:58:08 2006
@@ -0,0 +1,96 @@
+<?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>
+
+    <!-- POM Identification -->
+
+    <groupId>org.apache.portals.jetspeed-2</groupId>
+    <version>2.1-dev</version>
+    <artifactId>demo</artifactId>
+    <parent>
+        <groupId>org.apache.portals.jetspeed-2</groupId>
+        <version>2.1-dev</version>
+        <artifactId>applications</artifactId>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>war</packaging>
+    <name>Jetspeed-2 Demo Portlet Application</name>
+    <description>
+        Demo Portlets Container
+    </description>
+
+    <!-- Dependencies -->
+
+    <dependencies>
+
+        <!-- Build Dependencies -->
+        <dependency>
+            <groupId>velocity</groupId>
+            <artifactId>velocity</artifactId>
+        </dependency>
+
+        <!-- Runtime Dependencies -->
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>portals-gems</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>jetspeed-web-content</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>jstl</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>taglibs</groupId>
+            <artifactId>standard</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>taglibs</groupId>
+            <artifactId>request</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.portals.bridges</groupId>
+            <artifactId>portals-bridges-velocity</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+        </dependency>
+
+    </dependencies>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/applications/demo</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/applications/demo</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/jetspeed-2/trunk/applications/demo/</url>
+    </scm>
+
+</project>

Propchange: portals/jetspeed-2/trunk/applications/demo/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: portals/jetspeed-2/trunk/applications/gems/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/applications/gems/pom.xml?rev=376230&view=auto
==============================================================================
--- portals/jetspeed-2/trunk/applications/gems/pom.xml (added)
+++ portals/jetspeed-2/trunk/applications/gems/pom.xml Thu Feb  9 00:58:08 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>
+
+    <!-- POM Identification -->
+
+    <groupId>org.apache.portals.jetspeed-2</groupId>
+    <version>2.1-dev</version>
+    <artifactId>portals-gems</artifactId>
+    <parent>
+        <groupId>org.apache.portals.jetspeed-2</groupId>
+        <version>2.1-dev</version>
+        <artifactId>applications</artifactId>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>jar</packaging>
+    <name>Apache Portals Gems</name>
+    <description>
+        Reusable Portlets (Gems) for your Portlet Applications.
+    </description>
+
+    <!-- Dependencies -->
+
+    <dependencies>
+
+        <!-- Build Dependencies -->
+        <dependency>
+            <groupId>commons-dbcp</groupId>
+            <artifactId>commons-dbcp</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>velocity</groupId>
+            <artifactId>velocity</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.portals.bridges</groupId>
+            <artifactId>portals-bridges-velocity</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+        </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/jetspeed-2/trunk/applications/gems</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/applications/gems</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/jetspeed-2/trunk/applications/gems/</url>
+    </scm>
+
+</project>

Propchange: portals/jetspeed-2/trunk/applications/gems/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: portals/jetspeed-2/trunk/applications/j2-admin/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/applications/j2-admin/pom.xml?rev=376230&view=auto
==============================================================================
--- portals/jetspeed-2/trunk/applications/j2-admin/pom.xml (added)
+++ portals/jetspeed-2/trunk/applications/j2-admin/pom.xml Thu Feb  9 00:58:08 2006
@@ -0,0 +1,108 @@
+<?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>
+
+    <!-- POM Identification -->
+
+    <groupId>org.apache.portals.jetspeed-2</groupId>
+    <version>2.1-dev</version>
+    <artifactId>j2-admin</artifactId>
+    <parent>
+        <groupId>org.apache.portals.jetspeed-2</groupId>
+        <version>2.1-dev</version>
+        <artifactId>applications</artifactId>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>war</packaging>
+    <name>Jetspeed-2 Administration</name>
+    <description>
+        Jetspeed-2 Administration and Security
+    </description>
+
+    <!-- Dependencies -->
+
+    <dependencies>
+
+        <!-- Build Dependencies -->
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>portals-gems</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>velocity</groupId>
+            <artifactId>velocity</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.portals.bridges</groupId>
+            <artifactId>portals-bridges-frameworks</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.portals.bridges</groupId>
+            <artifactId>portals-bridges-jsf</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>jetspeed2-taglib-treecontrol</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>myfaces</groupId>
+            <artifactId>myfaces-api</artifactId>
+        </dependency>
+
+        <!-- Runtime Dependencies -->
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>jstl</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>taglibs</groupId>
+            <artifactId>standard</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>taglibs</groupId>
+            <artifactId>request</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.portals.bridges</groupId>
+            <artifactId>portals-bridges-velocity</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+        </dependency>
+
+    </dependencies>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/applications/j2-admin</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/applications/j2-admin</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/jetspeed-2/trunk/applications/j2-admin/</url>
+    </scm>
+
+</project>

Propchange: portals/jetspeed-2/trunk/applications/j2-admin/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: portals/jetspeed-2/trunk/applications/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/applications/pom.xml?rev=376230&view=auto
==============================================================================
--- portals/jetspeed-2/trunk/applications/pom.xml (added)
+++ portals/jetspeed-2/trunk/applications/pom.xml Thu Feb  9 00:58:08 2006
@@ -0,0 +1,77 @@
+<?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>
+
+    <!-- POM Identification -->
+
+    <groupId>org.apache.portals.jetspeed-2</groupId>
+    <version>2.1-dev</version>
+    <artifactId>applications</artifactId>
+    <parent>
+        <groupId>org.apache.portals.jetspeed-2</groupId>
+        <version>2.1-dev</version>
+        <artifactId>pom</artifactId>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>pom</packaging>
+    <name>Jetspeed-2 Applications</name>
+    <description>
+        Jetspeed-2 Applications
+    </description>
+
+    <!-- Application Modules -->
+
+    <modules>
+        <module>demo</module>
+        <module>gems</module>
+        <module>j2-admin</module>
+        <module>rss</module>
+    </modules>
+
+    <!-- Application Dependencies -->
+
+    <dependencies>
+
+        <!-- Provided Dependencies -->
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>jetspeed-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>jetspeed-commons</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+    </dependencies>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/applications</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/applications</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/jetspeed-2/trunk/applications/</url>
+    </scm>
+
+</project>

Propchange: portals/jetspeed-2/trunk/applications/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: portals/jetspeed-2/trunk/applications/rss/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/applications/rss/pom.xml?rev=376230&view=auto
==============================================================================
--- portals/jetspeed-2/trunk/applications/rss/pom.xml (added)
+++ portals/jetspeed-2/trunk/applications/rss/pom.xml Thu Feb  9 00:58:08 2006
@@ -0,0 +1,57 @@
+<?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>
+
+    <!-- POM Identification -->
+
+    <groupId>org.apache.portals.jetspeed-2</groupId>
+    <version>2.1-dev</version>
+    <artifactId>rss-application</artifactId>
+    <parent>
+        <groupId>org.apache.portals.jetspeed-2</groupId>
+        <version>2.1-dev</version>
+        <artifactId>applications</artifactId>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>pom</packaging>
+    <name>Jetspeed-2 RSS Application</name>
+    <description>
+        RSS Application
+    </description>
+
+    <!-- Application Modules -->
+
+    <modules>
+        <module>rss-jar</module>
+        <module>rss-war</module>
+    </modules>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/applications/rss</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/applications/rss</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/jetspeed-2/trunk/applications/rss/</url>
+    </scm>
+
+</project>

Propchange: portals/jetspeed-2/trunk/applications/rss/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: portals/jetspeed-2/trunk/applications/rss/rss-jar/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/applications/rss/rss-jar/pom.xml?rev=376230&view=auto
==============================================================================
--- portals/jetspeed-2/trunk/applications/rss/rss-jar/pom.xml (added)
+++ portals/jetspeed-2/trunk/applications/rss/rss-jar/pom.xml Thu Feb  9 00:58:08 2006
@@ -0,0 +1,87 @@
+<?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>
+
+    <!-- POM Identification -->
+
+    <groupId>org.apache.portals.jetspeed-2</groupId>
+    <version>2.1-dev</version>
+    <artifactId>rss-jar</artifactId>
+    <parent>
+        <groupId>org.apache.portals.jetspeed-2</groupId>
+        <version>2.1-dev</version>
+        <artifactId>rss-application</artifactId>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>jar</packaging>
+    <name>Jetspeed-2 RSS Application JAR</name>
+
+    <!-- Build Configuration -->
+
+    <build>
+
+        <!-- Standard Directories -->
+        <sourceDirectory>../src/java</sourceDirectory>
+
+        <!-- Resources -->
+        <resources>
+            <resource>
+                <directory>../src/java</directory>
+            </resource>
+        </resources>
+
+    </build>
+
+    <!-- Dependencies -->
+
+    <dependencies>
+
+        <!-- Build Dependencies -->
+        <dependency>
+            <groupId>org.apache.portals.bridges</groupId>
+            <artifactId>portals-bridges-velocity</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>velocity</groupId>
+            <artifactId>velocity</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring</artifactId>
+        </dependency>
+		<dependency>
+            <groupId>rome</groupId>
+            <artifactId>rome</artifactId>
+		</dependency>
+		<dependency>
+            <groupId>jdom</groupId>
+            <artifactId>jdom</artifactId>
+		</dependency>
+
+    </dependencies>
+
+</project>

Propchange: portals/jetspeed-2/trunk/applications/rss/rss-jar/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: portals/jetspeed-2/trunk/applications/rss/rss-war/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/applications/rss/rss-war/pom.xml?rev=376230&view=auto
==============================================================================
--- portals/jetspeed-2/trunk/applications/rss/rss-war/pom.xml (added)
+++ portals/jetspeed-2/trunk/applications/rss/rss-war/pom.xml Thu Feb  9 00:58:08 2006
@@ -0,0 +1,77 @@
+<?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>
+
+    <!-- POM Identification -->
+
+    <groupId>org.apache.portals.jetspeed-2</groupId>
+    <version>2.1-dev</version>
+    <artifactId>rss</artifactId>
+    <parent>
+        <groupId>org.apache.portals.jetspeed-2</groupId>
+        <version>2.1-dev</version>
+        <artifactId>rss-application</artifactId>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>war</packaging>
+    <name>Jetspeed-2 RSS Application WAR</name>
+
+    <!-- Build Configuration -->
+
+    <build>
+
+        <!-- Plugin Configuration -->
+        <pluginManagement>    
+            <plugins>
+
+                <!-- WAR plugin -->
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-war-plugin</artifactId>
+                    <configuration>
+                        <warSourceDirectory>../src/webapp</warSourceDirectory>
+                    </configuration>
+                </plugin> 
+
+            </plugins>
+        </pluginManagement>    
+
+    </build>
+
+    <!-- Dependencies -->
+
+    <dependencies>
+
+        <!-- Runtime Dependencies -->
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>rss-jar</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+        </dependency>
+
+    </dependencies>
+
+</project>

Propchange: portals/jetspeed-2/trunk/applications/rss/rss-war/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: portals/jetspeed-2/trunk/components/cm/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/cm/pom.xml?rev=376230&r1=376229&r2=376230&view=diff
==============================================================================
--- portals/jetspeed-2/trunk/components/cm/pom.xml (original)
+++ portals/jetspeed-2/trunk/components/cm/pom.xml Thu Feb  9 00:58:08 2006
@@ -45,7 +45,7 @@
 
         <!-- Build Dependencies -->
         <dependency>
-            <groupId>springframework</groupId>
+            <groupId>org.springframework</groupId>
             <artifactId>spring</artifactId>
         </dependency>
         <dependency>
@@ -96,7 +96,7 @@
             <scope>runtime</scope>
         </dependency>
         <dependency>
-            <groupId>jta</groupId>
+            <groupId>javax.transaction</groupId>
             <artifactId>jta</artifactId>
             <scope>runtime</scope>
         </dependency>

Modified: portals/jetspeed-2/trunk/components/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/pom.xml?rev=376230&r1=376229&r2=376230&view=diff
==============================================================================
--- portals/jetspeed-2/trunk/components/pom.xml (original)
+++ portals/jetspeed-2/trunk/components/pom.xml Thu Feb  9 00:58:08 2006
@@ -39,7 +39,7 @@
         Jetspeed-2 Components
     </description>
 
-    <!-- Components Modules -->
+    <!-- Component Modules -->
 
     <modules>
         <module>capability</module>
@@ -196,7 +196,7 @@
     <scm>
         <connection>scm:svn:http://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/components</connection>
         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/components</developerConnection>
-        <url>http://svn.apache.org/viewcvs.cgi/portals/jetspeed-2/trunk/components/components/</url>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/jetspeed-2/trunk/components/</url>
     </scm>
 
 </project>

Modified: portals/jetspeed-2/trunk/components/portal/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/portal/pom.xml?rev=376230&r1=376229&r2=376230&view=diff
==============================================================================
--- portals/jetspeed-2/trunk/components/portal/pom.xml (original)
+++ portals/jetspeed-2/trunk/components/portal/pom.xml Thu Feb  9 00:58:08 2006
@@ -117,8 +117,8 @@
             <artifactId>commons-collections</artifactId>
         </dependency>
         <dependency>
-            <groupId>javamail</groupId>
-            <artifactId>javamail</artifactId>
+            <groupId>javax.mail</groupId>
+            <artifactId>mail</artifactId>
         </dependency>
 
         <!-- Test Dependencies -->
@@ -177,6 +177,13 @@
             <groupId>mockrunner</groupId>
             <artifactId>mockrunner</artifactId>
             <scope>test</scope>
+        </dependency>
+
+        <!-- Runtime Dependencies -->
+        <dependency>
+            <groupId>javax.activation</groupId>
+            <artifactId>activation</artifactId>
+            <scope>runtime</scope>
         </dependency>
 
     </dependencies>

Modified: portals/jetspeed-2/trunk/components/serializer/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/serializer/pom.xml?rev=376230&r1=376229&r2=376230&view=diff
==============================================================================
--- portals/jetspeed-2/trunk/components/serializer/pom.xml (original)
+++ portals/jetspeed-2/trunk/components/serializer/pom.xml Thu Feb  9 00:58:08 2006
@@ -45,7 +45,7 @@
 
         <!-- Build Dependencies -->
         <dependency>
-            <groupId>springframework</groupId>
+            <groupId>org.springframework</groupId>
             <artifactId>spring</artifactId>
         </dependency>
         <dependency>

Modified: portals/jetspeed-2/trunk/components/web-content/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/web-content/pom.xml?rev=376230&r1=376229&r2=376230&view=diff
==============================================================================
--- portals/jetspeed-2/trunk/components/web-content/pom.xml (original)
+++ portals/jetspeed-2/trunk/components/web-content/pom.xml Thu Feb  9 00:58:08 2006
@@ -46,10 +46,6 @@
         <!-- Build Dependencies -->
         <dependency>
             <groupId>${pom.groupId}</groupId>
-            <artifactId>jetspeed-sso</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>${pom.groupId}</groupId>
             <artifactId>jetspeed-rewriter</artifactId>
         </dependency>
         <dependency>
@@ -59,6 +55,10 @@
         <dependency>
             <groupId>velocity</groupId>
             <artifactId>velocity</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-httpclient</groupId>
+            <artifactId>commons-httpclient</artifactId>
         </dependency>
 
     </dependencies>

Modified: portals/jetspeed-2/trunk/layout-portlets/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/layout-portlets/pom.xml?rev=376230&r1=376229&r2=376230&view=diff
==============================================================================
--- portals/jetspeed-2/trunk/layout-portlets/pom.xml (original)
+++ portals/jetspeed-2/trunk/layout-portlets/pom.xml Thu Feb  9 00:58:08 2006
@@ -71,10 +71,6 @@
             <groupId>commons-logging</groupId>
             <artifactId>commons-logging</artifactId>
         </dependency>
-        <dependency>
-            <groupId>log4j</groupId>
-            <artifactId>log4j</artifactId>
-        </dependency>
 
         <!-- Test Dependencies -->
         <dependency>
@@ -83,6 +79,12 @@
             <scope>test</scope>
         </dependency>
 
+        <!-- Runtime Dependencies -->
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+        </dependency>
+
     </dependencies>
 
     <!-- Project Information -->
@@ -90,7 +92,7 @@
     <scm>
         <connection>scm:svn:http://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/layout-portlets</connection>
         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/layout-portlets</developerConnection>
-        <url>http://svn.apache.org/viewcvs.cgi/portals/jetspeed-2/trunk/components/layout-portlets/</url>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/jetspeed-2/trunk/layout-portlets/</url>
     </scm>
 
 </project>

Modified: portals/jetspeed-2/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/pom.xml?rev=376230&r1=376229&r2=376230&view=diff
==============================================================================
--- portals/jetspeed-2/trunk/pom.xml (original)
+++ portals/jetspeed-2/trunk/pom.xml Thu Feb  9 00:58:08 2006
@@ -59,7 +59,6 @@
         <org.apache.jetspeed.production.database.password></org.apache.jetspeed.production.database.password>
 
         <!-- Dependency Version Properties -->
-        <activation.version>1.0.2</activation.version>
         <ant.version>1.6.5</ant.version>
         <aopalliance.version>1.0</aopalliance.version>
         <castor.version>0.9.4.3</castor.version>
@@ -77,28 +76,31 @@
         <commons-logging.version>1.0.3</commons-logging.version>
         <commons-pool.version>1.2</commons-pool.version>
         <directory.version>0.9.3</directory.version>      
-        <javamail.version>1.3.3</javamail.version>
+        <javax.activation.version>1.0.2</javax.activation.version>
+        <javax.mail.version>1.3.3</javax.mail.version>
+        <javax.servlet.jstl.version>1.0.6</javax.servlet.jstl.version>
+        <javax.servlet.version>2.3</javax.servlet.version>
+        <javax.transaction.version>1.0.1B</javax.transaction.version>
         <jaxen.version>1.0-FCS-full</jaxen.version>
         <jdbc.version>2.0</jdbc.version>
         <jdom.version>1.0</jdom.version>
         <jmock.version>1.0.1</jmock.version>
-        <jstl.version>1.0.6</jstl.version>
-        <jta.version>1.0.1</jta.version>
         <junit.version>3.8.1</junit.version>
         <log4j.version>1.2.8</log4j.version>
         <lucene.version>1.4.1</lucene.version>
         <mockrunner.version>0.2.7</mockrunner.version>
+        <myfaces.version>1.1.0</myfaces.version>
         <nekohtml.version>0.9.3</nekohtml.version>
         <ojb.version>1.0.3</ojb.version>
         <org.apache.derby.version>10.1.1.0</org.apache.derby.version>
         <org.apache.pluto.version>1.0.1</org.apache.pluto.version>
         <org.apache.portals.bridges.version>1.0</org.apache.portals.bridges.version>
+        <org.springframework.version>1.1.5</org.springframework.version>
         <oro.version>2.0.7</oro.version>
         <portlet-api.version>1.0</portlet-api.version>
         <regexp.version>1.2</regexp.version>
+        <rome.version>0.4</rome.version>
         <saxpath.version>1.0-FCS</saxpath.version>
-        <servletapi.version>2.3</servletapi.version>
-        <springframework.version>1.1.5</springframework.version>
         <taglibs-random.version>1.0.2</taglibs-random.version>
         <taglibs-request.version>1.0.1</taglibs-request.version>
         <taglibs-standard.version>1.0.6</taglibs-standard.version>
@@ -108,8 +110,8 @@
         <velocity.version>1.4</velocity.version>
         <xalan.version>2.4.1</xalan.version>
         <xerces.version>2.3.0</xerces.version>
+        <xml-apis.version>1.0.b2</xml-apis.version>
         <xstream.version>1.1.2</xstream.version>
-        <xml-apis.version>2.0.2</xml-apis.version>
 
     </properties>
 
@@ -139,15 +141,14 @@
         <!-- J2 Components -->
         <module>components</module>
 
+        <!-- J2 Taglibs -->
+        <module>taglibs</module>
+
         <!-- J2 Portal Applications -->
-        <!--
         <module>layout-portlets</module>
-        -->
 
         <!-- J2 Applications -->
-        <!--
         <module>applications</module>
-        -->
 
     </modules>
 
@@ -200,7 +201,22 @@
                 <type>pom</type>
                 <version>${pom.version}</version>
             </dependency>
-
+            <dependency>
+                <groupId>${pom.groupId}</groupId>
+                <artifactId>jetspeed-api</artifactId>
+                <version>${pom.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${pom.groupId}</groupId>
+                <artifactId>jetspeed-commons</artifactId>
+                <version>${pom.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${pom.groupId}</groupId>
+                <artifactId>content-server</artifactId>
+                <version>${pom.version}</version>
+            </dependency>
+ 
             <!-- J2 Components -->
             <dependency>
                 <groupId>${pom.groupId}</groupId>
@@ -259,16 +275,6 @@
             </dependency>
             <dependency>
                 <groupId>${pom.groupId}</groupId>
-                <artifactId>jetspeed-api</artifactId>
-                <version>${pom.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>${pom.groupId}</groupId>
-                <artifactId>jetspeed-commons</artifactId>
-                <version>${pom.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>${pom.groupId}</groupId>
                 <artifactId>jetspeed-locator</artifactId>
                 <version>${pom.version}</version>
             </dependency>
@@ -324,10 +330,22 @@
             </dependency>
             <dependency>
                 <groupId>${pom.groupId}</groupId>
-                <artifactId>content-server</artifactId>
+                <artifactId>jetspeed-web-content</artifactId>
                 <version>${pom.version}</version>
             </dependency>
     
+            <!-- Portals Applications -->
+            <dependency>
+                <groupId>${pom.groupId}</groupId>
+                <artifactId>portals-gems</artifactId>
+                <version>${pom.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${pom.groupId}</groupId>
+                <artifactId>rss-jar</artifactId>
+                <version>${pom.version}</version>
+            </dependency>
+
             <!-- Standard APIs -->
             <dependency>
                 <groupId>portlet-api</groupId>
@@ -335,9 +353,9 @@
                 <version>${portlet-api.version}</version>
             </dependency>
             <dependency>
-                <groupId>servletapi</groupId>
-                <artifactId>servletapi</artifactId>
-                <version>${servletapi.version}</version>
+                <groupId>javax.servlet</groupId>
+                <artifactId>servlet-api</artifactId>
+                <version>${javax.servlet.version}</version>
             </dependency>
 
             <!-- Pluto Container -->
@@ -356,9 +374,9 @@
 
             <!-- Spring Framework -->
             <dependency>
-                <groupId>springframework</groupId>
+                <groupId>org.springframework</groupId>
                 <artifactId>spring</artifactId>
-                <version>${springframework.version}</version>
+                <version>${org.springframework.version}</version>
             </dependency>
             <dependency>
                 <groupId>cglib</groupId>
@@ -580,9 +598,9 @@
 
             <!-- Database -->
             <dependency>
-                <groupId>jta</groupId>
+                <groupId>javax.transaction</groupId>
                 <artifactId>jta</artifactId>
-                <version>${jta.version}</version>
+                <version>${javax.transaction.version}</version>
             </dependency>
             <dependency>
                 <groupId>jdbc</groupId>
@@ -647,21 +665,21 @@
 
             <!-- Email -->
             <dependency>
-                <groupId>javamail</groupId>
-                <artifactId>javamail</artifactId>
-                <version>${javamail.version}</version>
+                <groupId>javax.mail</groupId>
+                <artifactId>mail</artifactId>
+                <version>${javax.mail.version}</version>
             </dependency>
             <dependency>
-                <groupId>activation</groupId>
+                <groupId>javax.activation</groupId>
                 <artifactId>activation</artifactId>
-                <version>${activation.version}</version>
+                <version>${javax.activation.version}</version>
             </dependency>
 
             <!-- Taglibs -->
             <dependency>
-                <groupId>jstl</groupId>
+                <groupId>javax.servlet</groupId>
                 <artifactId>jstl</artifactId>
-                <version>${jstl.version}</version>
+                <version>${javax.servlet.jstl.version}</version>
             </dependency>
             <dependency>
                 <groupId>taglibs</groupId>
@@ -678,6 +696,11 @@
                 <artifactId>random</artifactId>
                 <version>${taglibs-random.version}</version>
             </dependency>
+            <dependency>
+                <groupId>${pom.groupId}</groupId>
+                <artifactId>jetspeed2-taglib-treecontrol</artifactId>
+                <version>${pom.version}</version>
+            </dependency>
             
             <!-- Velocity -->
             <dependency>
@@ -702,6 +725,40 @@
                 <artifactId>portals-bridges-velocity</artifactId>
                 <version>${org.apache.portals.bridges.version}</version>
             </dependency>
+            <dependency>
+                <groupId>org.apache.portals.bridges</groupId>
+                <artifactId>portals-bridges-frameworks</artifactId>
+                <version>${org.apache.portals.bridges.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.portals.bridges</groupId>
+                <artifactId>portals-bridges-jsf</artifactId>
+                <version>${org.apache.portals.bridges.version}</version>
+            </dependency>
+
+            <!-- MyFaces -->
+            <dependency>
+                <groupId>myfaces</groupId>
+                <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>${myfaces.version}</version>
+            </dependency>
+
+            <!-- Rome -->
+            <dependency>
+                <groupId>rome</groupId>
+                <artifactId>rome</artifactId>
+                <version>${rome.version}</version>
+            </dependency>
 
         </dependencies>
     </dependencyManagement>    
@@ -791,8 +848,8 @@
             <scope>provided</scope>
         </dependency>
         <dependency>
-            <groupId>servletapi</groupId>
-            <artifactId>servletapi</artifactId>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
             <scope>provided</scope>
         </dependency>
         <dependency>

Added: portals/jetspeed-2/trunk/taglibs/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/taglibs/pom.xml?rev=376230&view=auto
==============================================================================
--- portals/jetspeed-2/trunk/taglibs/pom.xml (added)
+++ portals/jetspeed-2/trunk/taglibs/pom.xml Thu Feb  9 00:58:08 2006
@@ -0,0 +1,56 @@
+<?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>
+
+    <!-- POM Identification -->
+
+    <groupId>org.apache.portals.jetspeed-2</groupId>
+    <version>2.1-dev</version>
+    <artifactId>jetspeed2-taglibs</artifactId>
+    <parent>
+        <groupId>org.apache.portals.jetspeed-2</groupId>
+        <version>2.1-dev</version>
+        <artifactId>pom</artifactId>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>pom</packaging>
+    <name>Jetspeed-2 Taglibs</name>
+    <description>
+        Jetspeed-2 Taglibs
+    </description>
+
+    <!-- Taglib Modules -->
+
+    <modules>
+        <module>treecontrol</module>
+    </modules>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/taglibs</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/taglibs</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/jetspeed-2/trunk/taglibs/</url>
+    </scm>
+
+</project>

Propchange: portals/jetspeed-2/trunk/taglibs/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: portals/jetspeed-2/trunk/taglibs/treecontrol/pom.xml
URL: http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/taglibs/treecontrol/pom.xml?rev=376230&view=auto
==============================================================================
--- portals/jetspeed-2/trunk/taglibs/treecontrol/pom.xml (added)
+++ portals/jetspeed-2/trunk/taglibs/treecontrol/pom.xml Thu Feb  9 00:58:08 2006
@@ -0,0 +1,50 @@
+<?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>
+
+    <!-- POM Identification -->
+
+    <groupId>org.apache.portals.jetspeed-2</groupId>
+    <version>2.1-dev</version>
+    <artifactId>jetspeed2-taglib-treecontrol</artifactId>
+    <parent>
+        <groupId>org.apache.portals.jetspeed-2</groupId>
+        <version>2.1-dev</version>
+        <artifactId>jetspeed2-taglibs</artifactId>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>jar</packaging>
+    <name>Jetspeed 2 TreeControl TagLib</name>
+    <description>
+        TreeControl TagLib
+    </description>
+
+    <!-- Project Information -->
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/taglibs/treecontrol</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/taglibs/treecontrol</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/portals/jetspeed-2/trunk/taglibs/treecontrol/</url>
+    </scm>
+
+</project>

Propchange: portals/jetspeed-2/trunk/taglibs/treecontrol/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native



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