You are viewing a plain text version of this content. The canonical link for it is here.
Posted to portalapps-dev@portals.apache.org by vk...@apache.org on 2009/04/08 23:44:02 UTC

svn commit: r763413 - /portals/applications/applications-pom/trunk/pom.xml

Author: vkumar
Date: Wed Apr  8 21:44:02 2009
New Revision: 763413

URL: http://svn.apache.org/viewvc?rev=763413&view=rev
Log:
updating portals-pom version

Modified:
    portals/applications/applications-pom/trunk/pom.xml

Modified: portals/applications/applications-pom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/applications-pom/trunk/pom.xml?rev=763413&r1=763412&r2=763413&view=diff
==============================================================================
--- portals/applications/applications-pom/trunk/pom.xml (original)
+++ portals/applications/applications-pom/trunk/pom.xml Wed Apr  8 21:44:02 2009
@@ -1,131 +1,129 @@
 <?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: pom.xml 711319 2008-11-04 17:17:15Z woonsan $
+  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">
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
-    <modelVersion>4.0.0</modelVersion>
+  <modelVersion>4.0.0</modelVersion>
 
-    <parent>
-        <groupId>org.apache.portals</groupId>
-        <artifactId>portals-pom</artifactId>
-        <version>1.0-SNAPSHOT</version>
-    </parent>
+  <parent>
+    <groupId>org.apache.portals</groupId>
+    <artifactId>portals-pom</artifactId>
+    <version>1.0</version>
+  </parent>
 
-    <artifactId>applications-pom</artifactId>
-    <name>Apache Portals Applications</name>
-    <version>1.0-SNAPSHOT</version>
+  <artifactId>applications-pom</artifactId>
+  <name>Apache Portals Applications</name>
+  <version>1.0-SNAPSHOT</version>
 
-    <packaging>pom</packaging>
+  <packaging>pom</packaging>
 
-    <description>
+  <description>
         Portals Applications is dedicated to providing robust, full-featured, commercial-quality, and freely available Portlet Applications under the Apache Software Foundation License.
     </description>
 
-    <url>http://portals.apache.org/applications</url>
+  <url>http://portals.apache.org/applications</url>
 
 
-    <issueManagement>
-        <system>Jira</system>
-        <url>http://issues.apache.org/jira/browse/APA</url>
-    </issueManagement>
-
-    <inceptionYear>2008</inceptionYear>
-
-    <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/applications/applications-pom/trunk</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/applications/applications-pom/trunk</developerConnection>
-        <url>http://svn.apache.org/viewcvs.cgi/portals/applications/applications-pom/trunk</url>
-    </scm>
-
-    <mailingLists>
-        <mailingList>
-            <name>Portals Applications User List</name>
-            <subscribe>portalapps-user-subscribe@portals.apache.org</subscribe>
-            <unsubscribe>portalapps-user-unsubscribe@portals.apache.org</unsubscribe>
-            <post>portalapps-user@portals.apache.org</post>
-            <archive>http://mail-archives.apache.org/mod_mbox/portals-portalapps-user/</archive>
-        </mailingList>
-        <mailingList>
-            <name>Portals Applications Developer List</name>
-            <subscribe>portalapps-dev-subscribe@portals.apache.org</subscribe>
-            <unsubscribe>portalapps-dev-unsubscribe@portals.apache.org</unsubscribe>
-            <post>portalapps-dev@portals.apache.org</post>
-            <archive>http://mail-archives.apache.org/mod_mbox/portals-portalapps-dev/</archive>
-        </mailingList>
-    </mailingLists>
-
-    <build>
-        <!-- Plugin Configuration -->
-        <pluginManagement>
-            <plugins>
-
-                <!-- Clean: ignore errors -->
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-clean-plugin</artifactId>
-                    <version>2.3</version>
-                    <configuration>
-                        <failOnError>false</failOnError>
-                    </configuration>
-                </plugin>
-                <!-- Compiler -->
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-compiler-plugin</artifactId>
-                    <version>2.0.2</version>
-                    <configuration>
-                        <source>1.5</source>
-                        <target>1.5</target>
-                        <debug>true</debug>
-                    </configuration>
-                </plugin>
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-jar-plugin</artifactId>
-                    <version>2.2</version>
-                </plugin>
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-source-plugin</artifactId>
-                    <version>2.0.4</version>
-                    <inherited>true</inherited>
-                    <executions>
-                        <execution>
-                            <id>attach-sources</id>
-                            <goals>
-                                <goal>jar</goal>
-                            </goals>
-                        </execution>
-                    </executions>
-                </plugin>
-
-            </plugins>
-        </pluginManagement>
-    </build>
-
-    <profiles>
-
-        <profile>
-            <id>website</id>
-            <!--
-                 For building website documentation, there's no need to include
-                 modules.
-             -->
-            <modules/>
-        </profile>
-    </profiles>
+  <issueManagement>
+    <system>Jira</system>
+    <url>http://issues.apache.org/jira/browse/APA</url>
+  </issueManagement>
+
+  <inceptionYear>2008</inceptionYear>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/portals/applications/applications-pom/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/applications/applications-pom/trunk</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/portals/applications/applications-pom/trunk</url>
+  </scm>
+
+  <mailingLists>
+    <mailingList>
+      <name>Portals Applications User List</name>
+      <subscribe>portalapps-user-subscribe@portals.apache.org</subscribe>
+      <unsubscribe>portalapps-user-unsubscribe@portals.apache.org</unsubscribe>
+      <post>portalapps-user@portals.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/portals-portalapps-user/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Portals Applications Developer List</name>
+      <subscribe>portalapps-dev-subscribe@portals.apache.org</subscribe>
+      <unsubscribe>portalapps-dev-unsubscribe@portals.apache.org</unsubscribe>
+      <post>portalapps-dev@portals.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/portals-portalapps-dev/</archive>
+    </mailingList>
+  </mailingLists>
+
+  <build>
+    <!-- Plugin Configuration -->
+    <pluginManagement>
+      <plugins>
+
+        <!-- Clean: ignore errors -->
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-clean-plugin</artifactId>
+          <version>2.3</version>
+          <configuration>
+            <failOnError>false</failOnError>
+          </configuration>
+        </plugin>
+        <!-- Compiler -->
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>2.0.2</version>
+          <configuration>
+            <source>1.5</source>
+            <target>1.5</target>
+            <debug>true</debug>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jar-plugin</artifactId>
+          <version>2.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-source-plugin</artifactId>
+          <version>2.0.4</version>
+          <inherited>true</inherited>
+          <executions>
+            <execution>
+              <id>attach-sources</id>
+              <goals>
+                <goal>jar</goal>
+              </goals>
+            </execution>
+          </executions>
+        </plugin>
+
+      </plugins>
+    </pluginManagement>
+  </build>
+
+  <profiles>
+
+    <profile>
+      <id>website</id>
+      <!--
+        For building website documentation, there's no need to include modules.
+      -->
+      <modules />
+    </profile>
+  </profiles>
 </project>
\ No newline at end of file