You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2012/03/02 00:01:13 UTC

svn commit: r1295968 - /maven/sandbox/trunk/plugins/asf-svnpubsub-plugin/pom.xml

Author: hboutemy
Date: Thu Mar  1 23:01:12 2012
New Revision: 1295968

URL: http://svn.apache.org/viewvc?rev=1295968&view=rev
Log:
formatting

Modified:
    maven/sandbox/trunk/plugins/asf-svnpubsub-plugin/pom.xml

Modified: maven/sandbox/trunk/plugins/asf-svnpubsub-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/asf-svnpubsub-plugin/pom.xml?rev=1295968&r1=1295967&r2=1295968&view=diff
==============================================================================
--- maven/sandbox/trunk/plugins/asf-svnpubsub-plugin/pom.xml (original)
+++ maven/sandbox/trunk/plugins/asf-svnpubsub-plugin/pom.xml Thu Mar  1 23:01:12 2012
@@ -1,29 +1,42 @@
 <?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.
-  -->
+
+<!--
+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.
+-->
+
 <project
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
-  <artifactId>maven-plugins</artifactId>
-  <groupId>org.apache.maven.plugins</groupId>
-  <version>22</version>
-  <!-- <relativePath>../maven-plugins/pom.xml</relativePath> -->
- </parent>
-
- <artifactId>asf-svnpubsub-plugin</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>maven-plugin</packaging>
- <name>asf-svnpubsub-plugin Maven Plugin</name>
- <url>http://maven.apache.org/sandbox/plugins/asf-svnpubsub-plugin</url>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.plugins</groupId>
+    <artifactId>maven-plugins</artifactId>
+    <version>22</version>
+    <!-- <relativePath>../maven-plugins/pom.xml</relativePath> -->
+  </parent>
+
+  <artifactId>asf-svnpubsub-plugin</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>maven-plugin</packaging>
+
+  <name>asf-svnpubsub-plugin Maven Plugin</name>
+  <url>http://maven.apache.org/sandbox/plugins/asf-svnpubsub-plugin</url>
 
   <distributionManagement>
     <site>
@@ -32,83 +45,84 @@
     </site>
   </distributionManagement>
 
+  <properties>
+    <scmVersion>1.6</scmVersion>
+    <mavenVersion>2.2.1</mavenVersion>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.release</groupId>
+      <artifactId>maven-release-manager</artifactId>
+      <version>2.2.2</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-model</artifactId>
+      <version>${mavenVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-core</artifactId>
+      <version>${mavenVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-project</artifactId>
+      <version>${mavenVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-settings</artifactId>
+      <version>${mavenVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.scm</groupId>
+      <artifactId>maven-scm-api</artifactId>
+      <version>${scmVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+      <version>1.9.4</version>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</artifactId>
+      <version>1.9.4</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>2.0.1</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+      <version>4.8</version>
+    </dependency>
+  </dependencies>
+ 
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-plugin-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>generated-helpmojo</id>
+            <goals>
+              <goal>helpmojo</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <goalPrefix>asf-svnpubsub-plugin</goalPrefix>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
- <properties>
-  <scmVersion>1.6</scmVersion>
-  <mavenVersion>2.2.1</mavenVersion>
- </properties>
-
- <build>
-  <plugins>
-   <plugin>
-    <artifactId>maven-plugin-plugin</artifactId>
-    <executions>
-     <execution>
-      <id>generated-helpmojo</id>
-      <goals>
-       <goal>helpmojo</goal>
-      </goals>
-     </execution>
-    </executions>
-    <configuration>
-     <goalPrefix>asf-svnpubsub-plugin</goalPrefix>
-    </configuration>
-   </plugin>
-  </plugins>
- </build>
- <dependencies>
-  <dependency>
-   <groupId>org.apache.maven.release</groupId>
-   <version>2.2.2</version>
-   <artifactId>maven-release-manager</artifactId>
-  </dependency>
-  <dependency>
-   <groupId>org.apache.maven</groupId>
-   <artifactId>maven-model</artifactId>
-   <version>${mavenVersion}</version>
-  </dependency>
-  <dependency>
-   <groupId>org.apache.maven</groupId>
-   <artifactId>maven-core</artifactId>
-   <version>${mavenVersion}</version>
-  </dependency>
-  <dependency>
-   <groupId>org.apache.maven</groupId>
-   <artifactId>maven-project</artifactId>
-   <version>${mavenVersion}</version>
-  </dependency>
-  <dependency>
-   <groupId>org.apache.maven</groupId>
-   <artifactId>maven-settings</artifactId>
-   <version>${mavenVersion}</version>
-  </dependency>
-  <dependency>
-   <groupId>org.apache.maven.scm</groupId>
-   <artifactId>maven-scm-api</artifactId>
-   <version>${scmVersion}</version>
-  </dependency>
-  <dependency>
-   <groupId>junit</groupId>
-   <artifactId>junit</artifactId>
-   <scope>test</scope>
-   <version>4.8</version>
-  </dependency>
-  <dependency>
-   <groupId>org.codehaus.jackson</groupId>
-   <artifactId>jackson-core-asl</artifactId>
-   <version>1.9.4</version>
-  </dependency>
-  <dependency>
-   <groupId>org.codehaus.jackson</groupId>
-   <artifactId>jackson-mapper-asl</artifactId>
-   <version>1.9.4</version>
-  </dependency>
-  <dependency>
-   <groupId>commons-io</groupId>
-   <artifactId>commons-io</artifactId>
-   <version>2.0.1</version>
-  </dependency>
- </dependencies>
   <profiles>
     <profile>
       <id>run-its</id>