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 2009/04/30 20:53:47 UTC

svn commit: r770394 - in /portals/jetspeed-2/portal/trunk/enterprise: ./ ear-full/ ear-full/pom.xml ear-min/ ear-min/pom.xml pom.xml

Author: rwatler
Date: Thu Apr 30 18:53:47 2009
New Revision: 770394

URL: http://svn.apache.org/viewvc?rev=770394&view=rev
Log:
add ear building enterprise poms

Added:
    portals/jetspeed-2/portal/trunk/enterprise/
    portals/jetspeed-2/portal/trunk/enterprise/ear-full/
    portals/jetspeed-2/portal/trunk/enterprise/ear-full/pom.xml
    portals/jetspeed-2/portal/trunk/enterprise/ear-min/
    portals/jetspeed-2/portal/trunk/enterprise/ear-min/pom.xml
    portals/jetspeed-2/portal/trunk/enterprise/pom.xml

Added: portals/jetspeed-2/portal/trunk/enterprise/ear-full/pom.xml
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/trunk/enterprise/ear-full/pom.xml?rev=770394&view=auto
==============================================================================
--- portals/jetspeed-2/portal/trunk/enterprise/ear-full/pom.xml (added)
+++ portals/jetspeed-2/portal/trunk/enterprise/ear-full/pom.xml Thu Apr 30 18:53:47 2009
@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+    $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.9</maven>
+  </prerequisites>
+
+  <!-- POM Identification -->
+
+  <artifactId>jetspeed-enterprise-full</artifactId>
+  <parent>
+    <groupId>org.apache.portals.jetspeed-2</groupId>
+    <artifactId>jetspeed-enterprise</artifactId>
+    <version>2.2-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>    
+  <packaging>ear</packaging>
+  <name>Jetspeed-2 Full Enterprise Archive</name>
+
+  <!-- Application Dependencies -->
+  
+  <dependencies>
+    <!-- Provided Dependencies -->
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>j2-admin</artifactId>
+      <type>war</type>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.portals.applications</groupId>
+      <artifactId>apa-demo</artifactId>
+      <type>war</type>
+    </dependency>        
+    <dependency>
+      <groupId>org.apache.portals.applications</groupId>
+      <artifactId>apa-rss-war</artifactId>
+      <type>war</type>
+    </dependency>        
+    <dependency>
+      <groupId>org.apache.portals.applications</groupId>
+      <artifactId>apa-webcontent-war</artifactId>
+      <type>war</type>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-ear-plugin</artifactId>
+        <configuration>
+          <modules>
+            <webModule>
+              <groupId>${pom.groupId}</groupId>
+              <artifactId>jetspeed</artifactId>
+              <contextRoot>/jetspeed</contextRoot>
+            </webModule>                                              
+            <webModule>
+              <groupId>${pom.groupId}</groupId>
+              <artifactId>j2-admin</artifactId>
+              <contextRoot>/j2-admin</contextRoot>
+            </webModule>
+            <webModule>
+              <groupId>org.apache.portals.applications</groupId>
+              <artifactId>apa-demo</artifactId>
+              <contextRoot>/demo</contextRoot>
+            </webModule>                       
+            <webModule>
+              <groupId>org.apache.portals.applications</groupId>
+              <artifactId>apa-rss-war</artifactId>
+              <contextRoot>/rss</contextRoot>
+            </webModule>                       
+            <webModule>
+              <groupId>org.apache.portals.applications</groupId>
+              <artifactId>apa-webcontent-war</artifactId>
+              <contextRoot>/webcontent</contextRoot>
+            </webModule>                       
+
+            <javaModule>
+              <groupId>javax.ccpp</groupId>
+              <artifactId>ccpp</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>
+            <javaModule>
+              <groupId>${pom.groupId}</groupId>
+              <artifactId>jetspeed-api</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>
+            <javaModule>
+              <groupId>${pom.groupId}</groupId>
+              <artifactId>jetspeed-commons</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>
+            <javaModule>
+              <groupId>org.apache.portals.bridges</groupId>
+              <artifactId>portals-bridges-common</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>
+            <javaModule>                      
+              <groupId>javax.portlet</groupId>
+              <artifactId>portlet-api</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>
+            <javaModule>                      
+              <groupId>org.apache.pluto</groupId>
+              <artifactId>pluto-container-api</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>                                              
+            <javaModule>                      
+              <groupId>org.apache.pluto</groupId>
+              <artifactId>pluto-taglib</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>                                              
+          </modules>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
+

Added: portals/jetspeed-2/portal/trunk/enterprise/ear-min/pom.xml
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/trunk/enterprise/ear-min/pom.xml?rev=770394&view=auto
==============================================================================
--- portals/jetspeed-2/portal/trunk/enterprise/ear-min/pom.xml (added)
+++ portals/jetspeed-2/portal/trunk/enterprise/ear-min/pom.xml Thu Apr 30 18:53:47 2009
@@ -0,0 +1,111 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+    $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.9</maven>
+  </prerequisites>
+
+  <!-- POM Identification -->
+
+  <artifactId>jetspeed-enterprise-min</artifactId>
+  <parent>
+    <groupId>org.apache.portals.jetspeed-2</groupId>
+    <artifactId>jetspeed-enterprise</artifactId>
+    <version>2.2-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>    
+  <packaging>ear</packaging>
+  <name>Jetspeed-2 Minimal Enterprise Archive</name>
+
+  <!-- Application Dependencies -->
+  
+  <dependencies>
+    <!-- Provided Dependencies -->
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>j2-admin</artifactId>
+      <type>war</type>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-ear-plugin</artifactId>
+        <configuration>
+          <modules>
+            <webModule>
+              <groupId>${pom.groupId}</groupId>
+              <artifactId>jetspeed</artifactId>
+              <contextRoot>/jetspeed</contextRoot>
+            </webModule>                       
+            <webModule>
+              <groupId>${pom.groupId}</groupId>
+              <artifactId>j2-admin</artifactId>
+              <contextRoot>/j2-admin</contextRoot>
+            </webModule>
+            
+            <javaModule>
+              <groupId>javax.ccpp</groupId>
+              <artifactId>ccpp</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>
+            <javaModule>
+              <groupId>${pom.groupId}</groupId>
+              <artifactId>jetspeed-api</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>
+            <javaModule>
+              <groupId>${pom.groupId}</groupId>
+              <artifactId>jetspeed-commons</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>
+            <javaModule>
+              <groupId>org.apache.portals.bridges</groupId>
+              <artifactId>portals-bridges-common</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>
+            <javaModule>                      
+              <groupId>javax.portlet</groupId>
+              <artifactId>portlet-api</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>
+            <javaModule>                      
+              <groupId>org.apache.pluto</groupId>
+              <artifactId>pluto-container-api</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>                                              
+            <javaModule>                      
+              <groupId>org.apache.pluto</groupId>
+              <artifactId>pluto-taglib</artifactId>
+              <bundleDir>/</bundleDir>
+            </javaModule>                                              
+          </modules>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
+

Added: portals/jetspeed-2/portal/trunk/enterprise/pom.xml
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/trunk/enterprise/pom.xml?rev=770394&view=auto
==============================================================================
--- portals/jetspeed-2/portal/trunk/enterprise/pom.xml (added)
+++ portals/jetspeed-2/portal/trunk/enterprise/pom.xml Thu Apr 30 18:53:47 2009
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+    $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.9</maven>
+  </prerequisites>
+
+  <!-- POM Identification -->
+
+  <artifactId>jetspeed-enterprise</artifactId>
+  <parent>
+    <groupId>org.apache.portals.jetspeed-2</groupId>
+    <artifactId>jetspeed-2</artifactId>
+    <version>2.2-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <packaging>pom</packaging>
+  <name>Jetspeed-2 Enterprise Deployments</name>
+  <description>
+    Jetspeed-2 Enterprise Deployment Builds
+  </description>
+
+  <!-- Application Modules -->
+
+  <modules>
+    <module>ear-full</module>
+    <module>ear-min</module>    
+  </modules>
+
+  <!-- Application Dependencies -->
+
+  <dependencies>
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>jetspeed</artifactId>
+      <type>war</type>
+    </dependency>
+    <dependency>
+      <groupId>javax.ccpp</groupId>
+      <artifactId>ccpp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>jetspeed-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>jetspeed-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.portlet</groupId>
+      <artifactId>portlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pluto</groupId>
+      <artifactId>pluto-container-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pluto</groupId>
+      <artifactId>pluto-taglib</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.portals.bridges</groupId>
+      <artifactId>portals-bridges-common</artifactId>
+    </dependency>
+  </dependencies>
+
+  <!-- Project Information -->
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/enterprise</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/jetspeed-2/trunk/enterprise</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/portals/jetspeed-2/trunk/enterprise/</url>
+  </scm>
+  
+</project>



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