Author: olamy
Date: Sat Jan  9 18:27:41 2010
New Revision: 897512

URL: http://svn.apache.org/viewvc?rev=897512&view=rev
Log:
reformating

Modified:
    maven/sandbox/trunk/scm/maven-scm-provider-accurevnew/pom.xml

Modified: maven/sandbox/trunk/scm/maven-scm-provider-accurevnew/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/scm/maven-scm-provider-accurevnew/pom.xml?rev=897512&r1=897511&r2=897512&view=diff
==============================================================================
--- maven/sandbox/trunk/scm/maven-scm-provider-accurevnew/pom.xml (original)
+++ maven/sandbox/trunk/scm/maven-scm-provider-accurevnew/pom.xml Sat Jan  9 
18:27:41 2010
@@ -1,121 +1,127 @@
 <?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.
-       -->
-<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.scm</groupId>
-               <artifactId>maven-scm-providers</artifactId>
-               <version>1.2</version>
-       </parent>
-       <artifactId>maven-scm-provider-accurevnew</artifactId>
-       <version>1.2.1-SNAPSHOT</version>
-       <name>Maven SCM AccuRev Provider</name>
-       <description>SCM Provider implementation for AccuRev
+
+<!--
+  ~ 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 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/xsd/maven-4.0.0.xsd";>
+
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven.scm</groupId>
+    <artifactId>maven-scm-providers</artifactId>
+    <version>1.2</version>
+  </parent>
+  <artifactId>maven-scm-provider-accurevnew</artifactId>
+  <version>1.2.1-SNAPSHOT</version>
+  <name>Maven SCM AccuRev Provider</name>
+  <description>SCM Provider implementation for AccuRev
                (http://www.accurev.com/).</description>
-       <profiles>
-       </profiles>
-       <!--
-               <repositories> <repository> <id>MavenShapshots</id> <name>Maven
-               snapshots</name>
-               <url>http://people.apache.org/maven-snapshot-repository</url>
-               <releases> <enabled>false</enabled> </releases> </repository>
-               </repositories>
-       -->
-       <dependencies>
-               <!-- Test -->
-               <dependency>
-                       <groupId>org.apache.maven.scm</groupId>
-                       <artifactId>maven-scm-test</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>junit</groupId>
-                       <artifactId>junit</artifactId>
-                       <version>4.5</version>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.jmock</groupId>
-                       <artifactId>jmock</artifactId>
-                       <version>2.5.1</version>
-                       <scope>test</scope>
-               </dependency>
-       </dependencies>
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>org.codehaus.plexus</groupId>
-                               <artifactId>plexus-maven-plugin</artifactId>
-                               <executions>
-                                       <execution>
-                                               <goals>
-                                                       <goal>descriptor</goal>
-                                               </goals>
-                                       </execution>
-                               </executions>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-compiler-plugin</artifactId>
-                               <configuration>
-                                       <source>1.5</source>
-                                       <target>1.5</target>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-surefire-plugin</artifactId>
-                               <configuration>
-                                       <systemProperties>
-                                               <property>
-                                                       <name>tckBaseDir</name>
-                                                       
<value>${tckBaseDir}</value>
-                                               </property>
-                                               <property>
-                                                       
<name>tckUrlPrefix</name>
-                                                       
<value>${tckUrlPrefix}</value>
-                                               </property>
-                                               <property>
-                                                       
<name>tckAllowImpliedLogin</name>
-                                                       
<value>${tckAllowImpliedLogin}</value>
-                                               </property>
-                                       </systemProperties>
-                               </configuration>
-                       </plugin>
-               </plugins>
-       </build>
-       <reporting>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               
<artifactId>maven-surefire-report-plugin</artifactId>
-                               <version>2.4.2</version>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>cobertura-maven-plugin</artifactId>
-                               <version>2.2</version>
-                               <configuration>
-                                       <instrumentation>
-                                               <ignores>
-                                                       
<ignore>.*ScmLogger.*</ignore>
-                                               </ignores>
-                                       </instrumentation>
-                               </configuration>
-                       </plugin>
-               </plugins>
-       </reporting>
+  <profiles>
+  </profiles>
+  <!--
+    <repositories> <repository> <id>MavenShapshots</id> <name>Maven
+    snapshots</name>
+    <url>http://people.apache.org/maven-snapshot-repository</url>
+    <releases> <enabled>false</enabled> </releases> </repository>
+    </repositories>
+  -->
+  <dependencies>
+    <!-- Test -->
+    <dependency>
+      <groupId>org.apache.maven.scm</groupId>
+      <artifactId>maven-scm-test</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jmock</groupId>
+      <artifactId>jmock</artifactId>
+      <version>2.5.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.plexus</groupId>
+        <artifactId>plexus-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>descriptor</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <systemProperties>
+            <property>
+              <name>tckBaseDir</name>
+              <value>${tckBaseDir}</value>
+            </property>
+            <property>
+              <name>tckUrlPrefix</name>
+              <value>${tckUrlPrefix}</value>
+            </property>
+            <property>
+              <name>tckAllowImpliedLogin</name>
+              <value>${tckAllowImpliedLogin}</value>
+            </property>
+          </systemProperties>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+        <version>2.4.2</version>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+        <version>2.2</version>
+        <configuration>
+          <instrumentation>
+            <ignores>
+              <ignore>.*ScmLogger.*</ignore>
+            </ignores>
+          </instrumentation>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
 </project>


Reply via email to