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/06/21 19:04:49 UTC

svn commit: r1352618 - in /incubator/directmemory/trunk: directmemory-cache/pom.xml directmemory-tests/pom.xml examples/pom.xml integrations/pom.xml itests/pom.xml platforms/pom.xml pom.xml serializers/pom.xml server/pom.xml

Author: olamy
Date: Thu Jun 21 17:04:49 2012
New Revision: 1352618

URL: http://svn.apache.org/viewvc?rev=1352618&view=rev
Log:
simplify parent artifactId less ugly :-)

Modified:
    incubator/directmemory/trunk/directmemory-cache/pom.xml
    incubator/directmemory/trunk/directmemory-tests/pom.xml
    incubator/directmemory/trunk/examples/pom.xml
    incubator/directmemory/trunk/integrations/pom.xml
    incubator/directmemory/trunk/itests/pom.xml
    incubator/directmemory/trunk/platforms/pom.xml
    incubator/directmemory/trunk/pom.xml
    incubator/directmemory/trunk/serializers/pom.xml
    incubator/directmemory/trunk/server/pom.xml

Modified: incubator/directmemory/trunk/directmemory-cache/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/directmemory-cache/pom.xml?rev=1352618&r1=1352617&r2=1352618&view=diff
==============================================================================
--- incubator/directmemory/trunk/directmemory-cache/pom.xml (original)
+++ incubator/directmemory/trunk/directmemory-cache/pom.xml Thu Jun 21 17:04:49 2012
@@ -24,7 +24,7 @@ under the License.
 
   <parent>
     <groupId>org.apache.directmemory</groupId>
-    <artifactId>directmemory-parent</artifactId>
+    <artifactId>directmemory</artifactId>
     <version>0.1-SNAPSHOT</version>
     <relativePath>../</relativePath>
   </parent>

Modified: incubator/directmemory/trunk/directmemory-tests/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/directmemory-tests/pom.xml?rev=1352618&r1=1352617&r2=1352618&view=diff
==============================================================================
--- incubator/directmemory/trunk/directmemory-tests/pom.xml (original)
+++ incubator/directmemory/trunk/directmemory-tests/pom.xml Thu Jun 21 17:04:49 2012
@@ -1,48 +1,48 @@
-<?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/xsd/maven-4.0.0.xsd">
-  <modelVersion>4.0.0</modelVersion>
-  <parent>
-    <groupId>org.apache.directmemory</groupId>
-    <artifactId>directmemory-parent</artifactId>
-    <version>0.1-SNAPSHOT</version>
-  </parent>
-
-
-  <artifactId>directmemory-tests</artifactId>
-  <packaging>jar</packaging>
-
-  <name>Apache DirectMemory :: Tests</name>
-  <description>${project.name}</description>
-
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.directmemory</groupId>
-      <artifactId>directmemory-cache</artifactId>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>compile</scope>
-    </dependency>
-  </dependencies>
-
-</project>
+<?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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.directmemory</groupId>
+    <artifactId>directmemory</artifactId>
+    <version>0.1-SNAPSHOT</version>
+  </parent>
+
+
+  <artifactId>directmemory-tests</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Apache DirectMemory :: Tests</name>
+  <description>${project.name}</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.directmemory</groupId>
+      <artifactId>directmemory-cache</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+
+</project>

Modified: incubator/directmemory/trunk/examples/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/examples/pom.xml?rev=1352618&r1=1352617&r2=1352618&view=diff
==============================================================================
--- incubator/directmemory/trunk/examples/pom.xml (original)
+++ incubator/directmemory/trunk/examples/pom.xml Thu Jun 21 17:04:49 2012
@@ -23,7 +23,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <parent>
     <groupId>org.apache.directmemory</groupId>
-    <artifactId>directmemory-parent</artifactId>
+    <artifactId>directmemory</artifactId>
     <version>0.1-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>

Modified: incubator/directmemory/trunk/integrations/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/integrations/pom.xml?rev=1352618&r1=1352617&r2=1352618&view=diff
==============================================================================
--- incubator/directmemory/trunk/integrations/pom.xml (original)
+++ incubator/directmemory/trunk/integrations/pom.xml Thu Jun 21 17:04:49 2012
@@ -24,7 +24,7 @@
 
   <parent>
     <groupId>org.apache.directmemory</groupId>
-    <artifactId>directmemory-parent</artifactId>
+    <artifactId>directmemory</artifactId>
     <version>0.1-SNAPSHOT</version>
     <relativePath>../</relativePath>
   </parent>

Modified: incubator/directmemory/trunk/itests/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/itests/pom.xml?rev=1352618&r1=1352617&r2=1352618&view=diff
==============================================================================
--- incubator/directmemory/trunk/itests/pom.xml (original)
+++ incubator/directmemory/trunk/itests/pom.xml Thu Jun 21 17:04:49 2012
@@ -22,7 +22,7 @@ under the License.
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <parent>
     <groupId>org.apache.directmemory</groupId>
-    <artifactId>directmemory-parent</artifactId>
+    <artifactId>directmemory</artifactId>
     <version>0.1-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>

Modified: incubator/directmemory/trunk/platforms/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/platforms/pom.xml?rev=1352618&r1=1352617&r2=1352618&view=diff
==============================================================================
--- incubator/directmemory/trunk/platforms/pom.xml (original)
+++ incubator/directmemory/trunk/platforms/pom.xml Thu Jun 21 17:04:49 2012
@@ -23,7 +23,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <parent>
     <groupId>org.apache.directmemory</groupId>
-    <artifactId>directmemory-parent</artifactId>
+    <artifactId>directmemory</artifactId>
     <version>0.1-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>

Modified: incubator/directmemory/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/pom.xml?rev=1352618&r1=1352617&r2=1352618&view=diff
==============================================================================
--- incubator/directmemory/trunk/pom.xml (original)
+++ incubator/directmemory/trunk/pom.xml Thu Jun 21 17:04:49 2012
@@ -27,7 +27,7 @@ under the License.
   </parent>
 
   <groupId>org.apache.directmemory</groupId>
-  <artifactId>directmemory-parent</artifactId>
+  <artifactId>directmemory</artifactId>
   <version>0.1-SNAPSHOT</version>
   <packaging>pom</packaging>
 

Modified: incubator/directmemory/trunk/serializers/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/serializers/pom.xml?rev=1352618&r1=1352617&r2=1352618&view=diff
==============================================================================
--- incubator/directmemory/trunk/serializers/pom.xml (original)
+++ incubator/directmemory/trunk/serializers/pom.xml Thu Jun 21 17:04:49 2012
@@ -24,7 +24,7 @@
 
   <parent>
     <groupId>org.apache.directmemory</groupId>
-    <artifactId>directmemory-parent</artifactId>
+    <artifactId>directmemory</artifactId>
     <version>0.1-SNAPSHOT</version>
   </parent>
 

Modified: incubator/directmemory/trunk/server/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/server/pom.xml?rev=1352618&r1=1352617&r2=1352618&view=diff
==============================================================================
--- incubator/directmemory/trunk/server/pom.xml (original)
+++ incubator/directmemory/trunk/server/pom.xml Thu Jun 21 17:04:49 2012
@@ -22,8 +22,8 @@
          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">
   <parent>
-    <artifactId>directmemory-parent</artifactId>
     <groupId>org.apache.directmemory</groupId>
+    <artifactId>directmemory</artifactId>
     <version>0.1-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>