Author: olamy
Date: Thu Oct 13 10:23:25 2011
New Revision: 1182762

URL: http://svn.apache.org/viewvc?rev=1182762&view=rev
Log:
move pom to 2 spaces ident

Modified:
    incubator/directmemory/trunk/directmemory-cache/pom.xml

Modified: incubator/directmemory/trunk/directmemory-cache/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/directmemory-cache/pom.xml?rev=1182762&r1=1182761&r2=1182762&view=diff
==============================================================================
--- incubator/directmemory/trunk/directmemory-cache/pom.xml (original)
+++ incubator/directmemory/trunk/directmemory-cache/pom.xml Thu Oct 13 10:23:25 
2011
@@ -17,7 +17,8 @@ KIND, either express or implied.  See th
 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";>
+<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>
@@ -34,7 +35,10 @@ under the License.
   <artifactId>directmemory-cache</artifactId>
   <name>DirectMemory Cache</name>
   <version>0.5.5-SNAPSHOT</version>
-  <description>DirectMemory Cache is a multi layered cache implementation 
featuring off-heap memory management (a-la BigMemory) to enable efficient 
handling of a large number of java objects without affecting jvm garbage 
collection performance</description>
+  <description>DirectMemory Cache is a multi layered cache implementation 
featuring off-heap memory management (a-la
+    BigMemory) to enable efficient handling of a large number of java objects 
without affecting jvm garbage collection
+    performance
+  </description>
   <url>http://github.com/raffaeleguidi/DirectMemory</url>
   <issueManagement>
     <system>Github</system>
@@ -47,84 +51,102 @@ under the License.
   <build>
 
     <plugins>
-    
-    <plugin>
-      <groupId>org.apache.maven.plugins</groupId>
-      <artifactId>maven-compiler-plugin</artifactId>
-      <version>2.3.2</version>
-      <configuration>
-        <source>1.6</source>
-        <target>1.6</target>
-      </configuration>
-    </plugin>
-      
-    <plugin>
-      <groupId>org.codehaus.mojo</groupId>
-      <artifactId>aspectj-maven-plugin</artifactId>
-      <version>1.4</version>
-      <configuration>
-        <source>1.6</source>
-        <target>1.6</target>
-      </configuration>
-      <executions>
-        <execution>
-          <goals>
-            <goal>compile</goal>       <!-- use this goal to weave all your 
main classes -->
-            <goal>test-compile</goal>  <!-- use this goal to weave all your 
test classes -->
-          </goals>
-        </execution>
-      </executions>
-  </plugin>
-      
-      
-  <plugin>
-      <version>2.9</version>
-      <groupId>org.apache.maven.plugins</groupId>
-      <artifactId>maven-surefire-plugin</artifactId>
-      <configuration>
-        <argLine>-Xmx512m -Xms512m -XX:MaxDirectMemorySize=512m</argLine>
-      </configuration>
-  </plugin>
 
-  <!-- 
       <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>surefire-report-maven-plugin</artifactId>
-  <version>2.7.2</version>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.3.2</version>
+        <configuration>
+          <source>1.6</source>
+          <target>1.6</target>
+        </configuration>
       </plugin>
+
       <plugin>
-         <groupId>org.codehaus.mojo</groupId>
-         <artifactId>aspectj-maven-plugin</artifactId>
-         <version>1.3</version>
-                <configuration>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>aspectj-maven-plugin</artifactId>
+        <version>1.4</version>
+        <configuration>
           <source>1.6</source>
           <target>1.6</target>
-       </configuration>
-         <executions>
-             <execution>
-                 <goals>
-                     <goal>compile</goal>
-                     <goal>test-compile</goal>
-                 </goals>
-             </execution>
+        </configuration>
+        <executions>
+          <execution>
+            <goals>
+              <goal>compile</goal>
+              <!-- use this goal to weave all your main classes -->
+              <goal>test-compile</goal>
+              <!-- use this goal to weave all your test classes -->
+            </goals>
+          </execution>
         </executions>
-    </plugin>
-    
-  -->
+      </plugin>
+
+
+      <plugin>
+        <version>2.9</version>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <argLine>-Xmx512m -Xms512m -XX:MaxDirectMemorySize=512m</argLine>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <version>0.7</version>
+        <configuration>
+          <excludes>
+            <exclude>.gitignore</exclude>
+            <exclude>DEPENDENCIES</exclude>
+            <exclude>README.txt</exclude>
+            <exclude>*.sh</exclude>
+            <exclude>.git/**</exclude>
+            <exclude>.idea/**</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <!--
+          <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>surefire-report-maven-plugin</artifactId>
+      <version>2.7.2</version>
+          </plugin>
+          <plugin>
+             <groupId>org.codehaus.mojo</groupId>
+             <artifactId>aspectj-maven-plugin</artifactId>
+             <version>1.3</version>
+                    <configuration>
+              <source>1.6</source>
+              <target>1.6</target>
+           </configuration>
+             <executions>
+                 <execution>
+                     <goals>
+                         <goal>compile</goal>
+                         <goal>test-compile</goal>
+                     </goals>
+                 </execution>
+            </executions>
+        </plugin>
+
+      -->
     </plugins>
   </build>
   <repositories>
-   <repository>
-        <id>sonatype-nexus-public</id>
-        <name>SonaType public snapshots and releases repository</name>
-        <url>https://oss.sonatype.org/content/groups/public/</url>
-        <releases> 
-            <!-- set to true if you wish to fetch releases from this repo too. 
-->
-            <enabled>false</enabled>
-        </releases> 
-        <snapshots>
-            <enabled>true</enabled>
-        </snapshots>
+    <repository>
+      <id>sonatype-nexus-public</id>
+      <name>SonaType public snapshots and releases repository</name>
+      <url>https://oss.sonatype.org/content/groups/public/</url>
+      <releases>
+        <!-- set to true if you wish to fetch releases from this repo too. -->
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
     </repository>
     <!--
     <repository>
@@ -140,22 +162,22 @@ under the License.
   </repositories>
 
   <dependencies>
-  
-       <!-- 
-    <repositories>
-      <repository>
-          <id>lambdaj</id>
-          <name>Lambdaj Repository</name>
-          <url>http://lambdaj.googlecode.com/svn/repo/releases/</url>
-      </repository>
-    </repositories>
-    
-       -->
-  
-    <dependency>
-        <groupId>org.apache.servicemix.bundles</groupId>
-        <artifactId>org.apache.servicemix.bundles.josql</artifactId>
-        <version>1.5_5</version>
+
+    <!--
+     <repositories>
+       <repository>
+           <id>lambdaj</id>
+           <name>Lambdaj Repository</name>
+           <url>http://lambdaj.googlecode.com/svn/repo/releases/</url>
+       </repository>
+     </repositories>
+
+   -->
+
+    <dependency>
+      <groupId>org.apache.servicemix.bundles</groupId>
+      <artifactId>org.apache.servicemix.bundles.josql</artifactId>
+      <version>1.5_5</version>
     </dependency>
     <dependency>
       <groupId>net.sf.josql</groupId>
@@ -181,7 +203,7 @@ under the License.
       <version>0.3.0-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
-      <dependency>
+    <dependency>
       <groupId>com.google.guava</groupId>
       <artifactId>guava</artifactId>
       <version>r09</version>
@@ -236,16 +258,16 @@ under the License.
       <optional>false</optional>
     </dependency>
   </dependencies>
-  
-       <distributionManagement>
-           <repository>
-               <id>repo</id>
-               
<url>https://raw.github.com/raffaeleguidi/DirectMemory/master/Misc/mvn-repo/releases</url>
-           </repository>
-           <snapshotRepository>
-               <id>snapshot-repo</id>
-               
<url>https://raw.github.com/raffaeleguidi/DirectMemory/master/Misc/mvn-repo/snapshots</url>
-           </snapshotRepository>
-       </distributionManagement>
-  
+
+  <distributionManagement>
+    <repository>
+      <id>repo</id>
+      
<url>https://raw.github.com/raffaeleguidi/DirectMemory/master/Misc/mvn-repo/releases</url>
+    </repository>
+    <snapshotRepository>
+      <id>snapshot-repo</id>
+      
<url>https://raw.github.com/raffaeleguidi/DirectMemory/master/Misc/mvn-repo/snapshots</url>
+    </snapshotRepository>
+  </distributionManagement>
+
 </project>


Reply via email to