Author: djencks
Date: Tue Mar 17 21:59:19 2009
New Revision: 755416

URL: http://svn.apache.org/viewvc?rev=755416&view=rev
Log:
fix scm urls, remove some inherited stuff, tie down some plugin versions, 
change to spaces from tabs

Added:
    portals/applications/applications-pom/tags/
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=755416&r1=755415&r2=755416&view=diff
==============================================================================
--- portals/applications/applications-pom/trunk/pom.xml (original)
+++ portals/applications/applications-pom/trunk/pom.xml Tue Mar 17 21:59:19 2009
@@ -15,164 +15,156 @@
        License. $Id: pom.xml 711319 2008-11-04 17:17:15Z woonsan $
 -->
 <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>
-       
-       <prerequisites>
-               <maven>2.0.9</maven>
-       </prerequisites>
-       
-       <parent>
-               <groupId>org.apache.portals</groupId>
-               <artifactId>portals-pom</artifactId>
-               <version>1.0-SNAPSHOT</version>
-       </parent>
-       
-       <groupId>org.apache.portals</groupId>
-       <artifactId>applications-pom</artifactId>
-       <name>Apache Portals Applications</name>
-       <version>1.0-SNAPSHOT</version>
-       
-       <packaging>pom</packaging>
-       
-       <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>
-
-
-       <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</connection>
-               
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/applications</developerConnection>
-               
<url>http://svn.apache.org/viewcvs.cgi/portals/applications</url>
-       </scm>
-       
-       <mailingLists>
-               <mailingList>
-                       <name>Portals Applications User List</name>
-                       
<subscribe>[email protected]</subscribe>
-                       
<unsubscribe>[email protected]</unsubscribe>
-                       <post>[email protected]</post>
-                       
<archive>http://mail-archives.apache.org/mod_mbox/portals-portalapps-user/</archive>
-               </mailingList>
-               <mailingList>
-                       <name>Portals Applications Developer List</name>
-                       
<subscribe>[email protected]</subscribe>
-                       
<unsubscribe>[email protected]</unsubscribe>
-                       <post>[email protected]</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>
-                                       <configuration>
-                                               <failOnError>false</failOnError>
-                                       </configuration>
-                               </plugin>
-                               <!-- Compiler -->
-                               <plugin>
-                                       
<groupId>org.apache.maven.plugins</groupId>
-                                       
<artifactId>maven-compiler-plugin</artifactId>
-                                       <configuration>
-                                               <source>1.5</source>
-                                               <target>1.5</target>
-                                               <debug>true</debug>
-                                               
<showDeprecation>true</showDeprecation>
-                                               
<showWarnings>true</showWarnings>
-                                               <optimize>false</optimize>
-                                       </configuration>
-                               </plugin>
-                               <plugin>
-                                       
<groupId>org.apache.maven.plugins</groupId>
-                                       
<artifactId>maven-jar-plugin</artifactId>
-                                       <!--
-                                               force maven-jar-plugin to 2.1 
which fixes putting in the "correct"
-                                               pom.xml in the jar I'd like to 
be able to specify version range
-                                               [2.1,) but that seems to be 
utterly broken :(
-                                       -->
-                                       <version>2.1</version>
-                               </plugin>
-                               <plugin>
-                                       
<groupId>org.apache.maven.plugins</groupId>
-                                       
<artifactId>maven-eclipse-plugin</artifactId>
-                                       <version>2.4</version>
-                                       <configuration>
-                                               
<addVersionToProjectName>true</addVersionToProjectName>
-                                       </configuration>
-                               </plugin>
-                               <plugin>
-                                       
<groupId>org.apache.maven.plugins</groupId>
-                                       
<artifactId>maven-source-plugin</artifactId>
-                                       <version>2.0.3</version>
-                                       <inherited>true</inherited>
-                                       <executions>
-                                               <execution>
-                                                       <id>attach-sources</id>
-                                                       <goals>
-                                                               <goal>jar</goal>
-                                                       </goals>
-                                               </execution>
-                                       </executions>
-                               </plugin>
-
-                       </plugins>
-               </pluginManagement>
-               <resources>
-                       <resource>
-                               <!-- default from Super POM -->
-                               
<directory>${basedir}/src/main/resources</directory>
-                       </resource>
-                       <resource>
-                               <directory>${basedir}/src/main/java</directory>
-                               <includes>
-                                       <include>**/*.xml</include>
-                                       <include>**/*.properties</include>
-                                       <include>**/*.dtd</include>
-                                       <include>**/*.vm</include>
-                                       <include>**/*.conf</include>
-                               </includes>
-                       </resource>
-               </resources>
-               <testResources>
-                       <!-- default from Super POM -->
-                       <testResource>
-                               <directory>src/test/resources</directory>
-                       </testResource>
-                       <testResource>
-                               <directory>src/test/java</directory>
-                               <excludes>
-                                       <exclude>**/*.java</exclude>
-                               </excludes>
-                       </testResource>
-               </testResources>
-       </build>
-
-       <profiles>
-
-               <profile>
-                       <id>website</id>
-                       <!--
-                               For building website documentation, there's no 
need to include
-                               modules.
-                       -->
-                       <modules />
-               </profile>
-       </profiles>
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.portals</groupId>
+        <artifactId>portals-pom</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>applications-pom</artifactId>
+    <name>Apache Portals Applications</name>
+    <version>1.0-SNAPSHOT</version>
+
+    <packaging>pom</packaging>
+
+    <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>
+
+
+    <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>[email protected]</subscribe>
+            
<unsubscribe>[email protected]</unsubscribe>
+            <post>[email protected]</post>
+            
<archive>http://mail-archives.apache.org/mod_mbox/portals-portalapps-user/</archive>
+        </mailingList>
+        <mailingList>
+            <name>Portals Applications Developer List</name>
+            <subscribe>[email protected]</subscribe>
+            
<unsubscribe>[email protected]</unsubscribe>
+            <post>[email protected]</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>
+                        <showDeprecation>true</showDeprecation>
+                        <showWarnings>true</showWarnings>
+                        <optimize>false</optimize>
+                    </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-eclipse-plugin</artifactId>
+                    <version>2.4</version>
+                    <configuration>
+                        <addVersionToProjectName>true</addVersionToProjectName>
+                    </configuration>
+                </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>
+        <resources>
+            <resource>
+                <!-- default from Super POM -->
+                <directory>${basedir}/src/main/resources</directory>
+            </resource>
+            <resource>
+                <directory>${basedir}/src/main/java</directory>
+                <includes>
+                    <include>**/*.xml</include>
+                    <include>**/*.properties</include>
+                    <include>**/*.dtd</include>
+                    <include>**/*.vm</include>
+                    <include>**/*.conf</include>
+                </includes>
+            </resource>
+        </resources>
+        <testResources>
+            <!-- default from Super POM -->
+            <testResource>
+                <directory>src/test/resources</directory>
+            </testResource>
+            <testResource>
+                <directory>src/test/java</directory>
+                <excludes>
+                    <exclude>**/*.java</exclude>
+                </excludes>
+            </testResource>
+        </testResources>
+    </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


Reply via email to