You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directmemory.apache.org by ol...@apache.org on 2012/07/02 17:00:06 UTC

svn commit: r1356278 - /incubator/directmemory/trunk/integrations/ehcache/pom.xml

Author: olamy
Date: Mon Jul  2 15:00:05 2012
New Revision: 1356278

URL: http://svn.apache.org/viewvc?rev=1356278&view=rev
Log:
format pom as the others

Modified:
    incubator/directmemory/trunk/integrations/ehcache/pom.xml

Modified: incubator/directmemory/trunk/integrations/ehcache/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/integrations/ehcache/pom.xml?rev=1356278&r1=1356277&r2=1356278&view=diff
==============================================================================
--- incubator/directmemory/trunk/integrations/ehcache/pom.xml (original)
+++ incubator/directmemory/trunk/integrations/ehcache/pom.xml Mon Jul  2 15:00:05 2012
@@ -17,64 +17,65 @@
   ~ 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>
+  <modelVersion>4.0.0</modelVersion>
 
-    <parent>
-        <groupId>org.apache.directmemory</groupId>
-        <artifactId>directmemory-integrations</artifactId>
-        <version>0.1-SNAPSHOT</version>
-    </parent>
-
-    <artifactId>directmemory-ehcache</artifactId>
-    <name>Apache DirectMemory :: Integrations :: EHCache</name>
-    <packaging>bundle</packaging>
-    <description>EHCache CacheStore Implementation to integrate DirectMemory Cache as OffHeapStore.</description>
-
-    <properties>
-        <osgi.import>
-            org.apache.directmemory*;version="${project.version}",
-            org.slf4j*,
-            *
-        </osgi.import>
-        <osgi.export>
-            org.apache.directmemory.ehcache;version="${project.version}";-noimport:=true,
-            net.sf.ehcache.store.offheap;version="2.5.0";-noimport:=true
-        </osgi.export>
-    </properties>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <configuration>
-                    <argLine>-Xmx512m -Xms512m -XX:MaxDirectMemorySize=512m</argLine>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-    <dependencies>
-        <!-- DirectMemory Dependency -->
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>directmemory-cache</artifactId>
-        </dependency>
-
-        <!-- EHCache Dependency -->
-        <dependency>
-            <groupId>net.sf.ehcache</groupId>
-            <artifactId>ehcache-core</artifactId>
-        </dependency>
-
-        <!-- Testing Dependencies -->
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
+  <parent>
+    <groupId>org.apache.directmemory</groupId>
+    <artifactId>directmemory-integrations</artifactId>
+    <version>0.1-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>directmemory-ehcache</artifactId>
+  <name>Apache DirectMemory :: Integrations :: EHCache</name>
+  <packaging>bundle</packaging>
+  <description>EHCache CacheStore Implementation to integrate DirectMemory Cache as OffHeapStore.</description>
+
+  <properties>
+    <osgi.import>
+      org.apache.directmemory*;version="${project.version}",
+      org.slf4j*,
+      *
+    </osgi.import>
+    <osgi.export>
+      org.apache.directmemory.ehcache;version="${project.version}";-noimport:=true,
+      net.sf.ehcache.store.offheap;version="2.5.0";-noimport:=true
+    </osgi.export>
+  </properties>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <argLine>-Xmx512m -Xms512m -XX:MaxDirectMemorySize=512m</argLine>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+    <!-- DirectMemory Dependency -->
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>directmemory-cache</artifactId>
+    </dependency>
+
+    <!-- EHCache Dependency -->
+    <dependency>
+      <groupId>net.sf.ehcache</groupId>
+      <artifactId>ehcache-core</artifactId>
+    </dependency>
+
+    <!-- Testing Dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
 
 </project>