Author: dennisl Date: Fri Dec 28 08:23:00 2007 New Revision: 607280 URL: http://svn.apache.org/viewvc?rev=607280&view=rev Log: o Add xml declaration. o Replace tabs with spaces and fix indentation.
Modified: maven/enforcer/trunk/maven-enforcer-plugin/pom.xml Modified: maven/enforcer/trunk/maven-enforcer-plugin/pom.xml URL: http://svn.apache.org/viewvc/maven/enforcer/trunk/maven-enforcer-plugin/pom.xml?rev=607280&r1=607279&r2=607280&view=diff ============================================================================== --- maven/enforcer/trunk/maven-enforcer-plugin/pom.xml (original) +++ maven/enforcer/trunk/maven-enforcer-plugin/pom.xml Fri Dec 28 08:23:00 2007 @@ -1,5 +1,5 @@ -<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"> - <!-- +<?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 @@ -18,121 +18,122 @@ * under the License. * --> - <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.apache.maven.enforcer</groupId> - <artifactId>enforcer</artifactId> - <version>1-SNAPSHOT</version> - </parent> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-enforcer-plugin</artifactId> - <packaging>maven-plugin</packaging> - <name>Maven Enforcer Plugin</name> - <description>The Loving Iron Fist of Maven</description> - <version>1.0-SNAPSHOT</version> - <issueManagement> - <system>JIRA</system> - <url>http://jira.codehaus.org/browse/MENFORCER</url> - </issueManagement> +<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> + <parent> + <groupId>org.apache.maven.enforcer</groupId> + <artifactId>enforcer</artifactId> + <version>1-SNAPSHOT</version> + </parent> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <packaging>maven-plugin</packaging> + <name>Maven Enforcer Plugin</name> + <description>The Loving Iron Fist of Maven</description> + <version>1.0-SNAPSHOT</version> + <issueManagement> + <system>JIRA</system> + <url>http://jira.codehaus.org/browse/MENFORCER</url> + </issueManagement> - <prerequisites> - <!--because of the encoding fixes, I need a new plexus-utils. The new plexus utils can only be used in 2.0.6 or later: http://jira.codehaus.org/browse/MNG-2892 --> - <maven>2.0.6</maven> - </prerequisites> - - <developers> - <developer> - <id>brianf</id> - <name>Brian Fox</name> - <email>[EMAIL PROTECTED]</email> - <roles> - <role>Lead Developer</role> - </roles> - <timezone>5</timezone> - </developer> - </developers> - <licenses> - <license> - <name>Apache License 2.0</name> - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> - <distribution>repo</distribution> - </license> - </licenses> - <distributionManagement> - <site> - <id>apache.website</id> - <url>scp://people.apache.org/www/maven.apache.org/plugins/maven-enforcer-plugin</url> - </site> + <prerequisites> + <!--because of the encoding fixes, I need a new plexus-utils. The new plexus utils can only be used in 2.0.6 or later: http://jira.codehaus.org/browse/MNG-2892 --> + <maven>2.0.6</maven> + </prerequisites> + + <developers> + <developer> + <id>brianf</id> + <name>Brian Fox</name> + <email>[EMAIL PROTECTED]</email> + <roles> + <role>Lead Developer</role> + </roles> + <timezone>5</timezone> + </developer> + </developers> + <licenses> + <license> + <name>Apache License 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + <distributionManagement> + <site> + <id>apache.website</id> + <url>scp://people.apache.org/www/maven.apache.org/plugins/maven-enforcer-plugin</url> + </site> </distributionManagement> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - <version>2.0</version> - <executions> - <execution> - <phase>clean</phase> - <goals> - <goal>clean</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - <resources> - <!-- Include super-pom defined main/resources - Removing this section will break the build. - Since we have defined a new build/resources - section for the Apache process LICENSE and NOTICE - files, this original default section is now - required. --> - <resource> - <directory>${basedir}/src/main/resources</directory> - </resource> - </resources> - </build> - <dependencies> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-artifact</artifactId> - </dependency> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-plugin-api</artifactId> - </dependency> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-project</artifactId> - </dependency> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-core</artifactId> - </dependency> - <dependency> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-utils</artifactId> - </dependency> - <dependency> - <groupId>commons-lang</groupId> - <artifactId>commons-lang</artifactId> - </dependency> - <dependency> - <groupId>org.apache.maven.enforcer</groupId> - <artifactId>enforcer-api</artifactId> - </dependency> - <dependency> - <groupId>org.apache.maven.enforcer</groupId> - <artifactId>enforcer-rules</artifactId> - </dependency> - <dependency> - <groupId>org.apache.maven.enforcer</groupId> - <artifactId>enforcer-rules</artifactId> - <classifier>tests</classifier> - </dependency> - <dependency> - <groupId>org.apache.maven.shared</groupId> - <artifactId>maven-plugin-testing-harness</artifactId> - </dependency> - </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + <version>2.0</version> + <executions> + <execution> + <phase>clean</phase> + <goals> + <goal>clean</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + <resources> + <!-- Include super-pom defined main/resources + Removing this section will break the build. + Since we have defined a new build/resources + section for the Apache process LICENSE and NOTICE + files, this original default section is now + required. --> + <resource> + <directory>${basedir}/src/main/resources</directory> + </resource> + </resources> + </build> + <dependencies> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-artifact</artifactId> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-plugin-api</artifactId> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-project</artifactId> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-core</artifactId> + </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-utils</artifactId> + </dependency> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + </dependency> + <dependency> + <groupId>org.apache.maven.enforcer</groupId> + <artifactId>enforcer-api</artifactId> + </dependency> + <dependency> + <groupId>org.apache.maven.enforcer</groupId> + <artifactId>enforcer-rules</artifactId> + </dependency> + <dependency> + <groupId>org.apache.maven.enforcer</groupId> + <artifactId>enforcer-rules</artifactId> + <classifier>tests</classifier> + </dependency> + <dependency> + <groupId>org.apache.maven.shared</groupId> + <artifactId>maven-plugin-testing-harness</artifactId> + </dependency> + </dependencies> </project>