Author: olamy
Date: Thu Jun 21 20:42:03 2012
New Revision: 1352671

URL: http://svn.apache.org/viewvc?rev=1352671&view=rev
Log:
[maven-release-plugin] prepare release directmemory-0.1-incubating

Modified:
    incubator/directmemory/trunk/directmemory-cache/pom.xml
    incubator/directmemory/trunk/directmemory-tests/pom.xml
    incubator/directmemory/trunk/examples/pom.xml
    incubator/directmemory/trunk/examples/server-example/pom.xml
    incubator/directmemory/trunk/integrations/ehcache/pom.xml
    incubator/directmemory/trunk/integrations/pom.xml
    incubator/directmemory/trunk/integrations/solr/pom.xml
    incubator/directmemory/trunk/itests/osgi/pom.xml
    incubator/directmemory/trunk/itests/pom.xml
    incubator/directmemory/trunk/platforms/karaf/pom.xml
    incubator/directmemory/trunk/platforms/pom.xml
    incubator/directmemory/trunk/pom.xml
    incubator/directmemory/trunk/serializers/msgpack/pom.xml
    incubator/directmemory/trunk/serializers/pom.xml
    incubator/directmemory/trunk/serializers/protobuf/pom.xml
    incubator/directmemory/trunk/serializers/protostuff/pom.xml
    incubator/directmemory/trunk/server/directmemory-server-archetype/pom.xml
    incubator/directmemory/trunk/server/directmemory-server-client/pom.xml
    incubator/directmemory/trunk/server/directmemory-server-commons/pom.xml
    incubator/directmemory/trunk/server/directmemory-server/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=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/directmemory-cache/pom.xml (original)
+++ incubator/directmemory/trunk/directmemory-cache/pom.xml Thu Jun 21 20:42:03 
2012
@@ -1,133 +1,132 @@
-<?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>
-    <relativePath>../</relativePath>
-  </parent>
-
-  <artifactId>directmemory-cache</artifactId>
-  <name>Apache DirectMemory :: Cache</name>
-  <packaging>bundle</packaging>
-  <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>
-
-  <properties>
-    <osgi.import>
-      !org.apache.directmemory*,
-      com.google.common.collect;version="[9.0,11)",
-      com.google.common.base;version="[9.0,11)",
-      org.aspectj*;version="[1.6,2)",
-      org.slf4j*
-    </osgi.import>
-    
<osgi.export>org.apache.directmemory*;version="${project.version}</osgi.export>
-  </properties>
-
-
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-clean-plugin</artifactId>
-        <configuration>
-          <filesets>
-            <fileset>
-              <directory>logs</directory>
-              <followSymlinks>false</followSymlinks>
-            </fileset>
-          </filesets>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>aspectj-maven-plugin</artifactId>
-        <version>1.4</version>
-        <configuration>
-          <source>${maven.compile.source}</source>
-          <target>${maven.compile.target}</target>
-          <complianceLevel>${java.version}</complianceLevel>
-        </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>
-        <dependencies>
-          <dependency>
-            <groupId>org.aspectj</groupId>
-            <artifactId>aspectjtools</artifactId>
-            <version>${aspectj.version}</version>
-          </dependency>
-        </dependencies>
-      </plugin>
-
-    </plugins>
-  </build>
-
-  <dependencies>
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-api</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>com.google.guava</groupId>
-      <artifactId>guava</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.aspectj</groupId>
-      <artifactId>aspectjrt</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>com.carrotsearch</groupId>
-      <artifactId>junit-benchmarks</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>ch.qos.logback</groupId>
-      <artifactId>logback-core</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>ch.qos.logback</groupId>
-      <artifactId>logback-classic</artifactId>
-      <scope>test</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-incubating</version>
+    <relativePath>../</relativePath>
+  </parent>
+
+  <artifactId>directmemory-cache</artifactId>
+  <name>Apache DirectMemory :: Cache</name>
+  <packaging>bundle</packaging>
+  <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>
+
+  <properties>
+    <osgi.import>
+      !org.apache.directmemory*,
+      com.google.common.collect;version="[9.0,11)",
+      com.google.common.base;version="[9.0,11)",
+      org.aspectj*;version="[1.6,2)",
+      org.slf4j*
+    </osgi.import>
+    
<osgi.export>org.apache.directmemory*;version="${project.version}</osgi.export>
+  </properties>
+
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-clean-plugin</artifactId>
+        <configuration>
+          <filesets>
+            <fileset>
+              <directory>logs</directory>
+              <followSymlinks>false</followSymlinks>
+            </fileset>
+          </filesets>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>aspectj-maven-plugin</artifactId>
+        <version>1.4</version>
+        <configuration>
+          <source>${maven.compile.source}</source>
+          <target>${maven.compile.target}</target>
+          <complianceLevel>${java.version}</complianceLevel>
+        </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>
+        <dependencies>
+          <dependency>
+            <groupId>org.aspectj</groupId>
+            <artifactId>aspectjtools</artifactId>
+            <version>${aspectj.version}</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+
+    </plugins>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.aspectj</groupId>
+      <artifactId>aspectjrt</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>junit-benchmarks</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>ch.qos.logback</groupId>
+      <artifactId>logback-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>ch.qos.logback</groupId>
+      <artifactId>logback-classic</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+</project>

Modified: incubator/directmemory/trunk/directmemory-tests/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/directmemory-tests/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/directmemory-tests/pom.xml (original)
+++ incubator/directmemory/trunk/directmemory-tests/pom.xml Thu Jun 21 20:42:03 
2012
@@ -22,7 +22,7 @@ under the License.
   <parent>
     <groupId>org.apache.directmemory</groupId>
     <artifactId>directmemory</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
 
 

Modified: incubator/directmemory/trunk/examples/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/examples/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/examples/pom.xml (original)
+++ incubator/directmemory/trunk/examples/pom.xml Thu Jun 21 20:42:03 2012
@@ -18,13 +18,11 @@
   ~ 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";>
   <parent>
     <groupId>org.apache.directmemory</groupId>
     <artifactId>directmemory</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 

Modified: incubator/directmemory/trunk/examples/server-example/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/examples/server-example/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/examples/server-example/pom.xml (original)
+++ incubator/directmemory/trunk/examples/server-example/pom.xml Thu Jun 21 
20:42:03 2012
@@ -18,13 +18,11 @@
   ~ 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";>
   <parent>
     <groupId>org.apache.directmemory</groupId>
     <artifactId>examples</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 

Modified: incubator/directmemory/trunk/integrations/ehcache/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/integrations/ehcache/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/integrations/ehcache/pom.xml (original)
+++ incubator/directmemory/trunk/integrations/ehcache/pom.xml Thu Jun 21 
20:42:03 2012
@@ -17,15 +17,14 @@
   ~ 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>
         <groupId>org.apache.directmemory</groupId>
         <artifactId>directmemory-integrations</artifactId>
-        <version>0.1-SNAPSHOT</version>
+        <version>0.1-incubating</version>
     </parent>
 
     <artifactId>directmemory-ehcache</artifactId>

Modified: incubator/directmemory/trunk/integrations/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/integrations/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/integrations/pom.xml (original)
+++ incubator/directmemory/trunk/integrations/pom.xml Thu Jun 21 20:42:03 2012
@@ -17,15 +17,13 @@
   ~ 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>
     <groupId>org.apache.directmemory</groupId>
     <artifactId>directmemory</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
     <relativePath>../</relativePath>
   </parent>
 

Modified: incubator/directmemory/trunk/integrations/solr/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/integrations/solr/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/integrations/solr/pom.xml (original)
+++ incubator/directmemory/trunk/integrations/solr/pom.xml Thu Jun 21 20:42:03 
2012
@@ -17,15 +17,14 @@ 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>
     <groupId>org.apache.directmemory</groupId>
     <artifactId>directmemory-integrations</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
 
   <artifactId>directmemory-solr</artifactId>

Modified: incubator/directmemory/trunk/itests/osgi/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/itests/osgi/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/itests/osgi/pom.xml (original)
+++ incubator/directmemory/trunk/itests/osgi/pom.xml Thu Jun 21 20:42:03 2012
@@ -17,13 +17,11 @@ 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";>
   <parent>
     <groupId>org.apache.directmemory</groupId>
     <artifactId>itests</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 

Modified: incubator/directmemory/trunk/itests/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/itests/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/itests/pom.xml (original)
+++ incubator/directmemory/trunk/itests/pom.xml Thu Jun 21 20:42:03 2012
@@ -17,13 +17,11 @@ 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";>
   <parent>
     <groupId>org.apache.directmemory</groupId>
     <artifactId>directmemory</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 

Modified: incubator/directmemory/trunk/platforms/karaf/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/platforms/karaf/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/platforms/karaf/pom.xml (original)
+++ incubator/directmemory/trunk/platforms/karaf/pom.xml Thu Jun 21 20:42:03 
2012
@@ -18,13 +18,11 @@
   ~ 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";>
   <parent>
     <artifactId>platforms</artifactId>
     <groupId>org.apache.directmemory</groupId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</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=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/platforms/pom.xml (original)
+++ incubator/directmemory/trunk/platforms/pom.xml Thu Jun 21 20:42:03 2012
@@ -18,13 +18,11 @@
   ~ 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";>
   <parent>
     <groupId>org.apache.directmemory</groupId>
     <artifactId>directmemory</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</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=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/pom.xml (original)
+++ incubator/directmemory/trunk/pom.xml Thu Jun 21 20:42:03 2012
@@ -28,7 +28,7 @@ under the License.
 
   <groupId>org.apache.directmemory</groupId>
   <artifactId>directmemory</artifactId>
-  <version>0.1-SNAPSHOT</version>
+  <version>0.1-incubating</version>
   <packaging>pom</packaging>
 
   <name>Apache DirectMemory</name>
@@ -209,9 +209,9 @@ under the License.
   </modules>
 
   <scm>
-    
<connection>scm:svn:https://svn.apache.org/repos/asf/incubator/directmemory/trunk/</connection>
-    
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/directmemory/trunk/</developerConnection>
-    <url>https://svn.apache.org/viewvc/incubator/directmemory/trunk/</url>
+    
<connection>scm:svn:https://svn.apache.org/repos/asf/incubator/directmemory/tags/directmemory-0.1-incubating</connection>
+    
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/directmemory/tags/directmemory-0.1-incubating</developerConnection>
+    
<url>https://svn.apache.org/viewvc/incubator/directmemory/tags/directmemory-0.1-incubating</url>
   </scm>
   <issueManagement>
     <system>jira</system>
@@ -286,12 +286,12 @@ under the License.
     <asfTomcatMavenPluginVersion>2.0-beta-1</asfTomcatMavenPluginVersion>
 
     <!-- Bundle Headers -->
-    <osgi.activator/>
-    <osgi.bundles/>
-    <osgi.dynamic.import/>
-    <osgi.export/>
-    <osgi.import/>
-    <osgi.private/>
+    <osgi.activator />
+    <osgi.bundles />
+    <osgi.dynamic.import />
+    <osgi.export />
+    <osgi.import />
+    <osgi.private />
 
     <!-- properties for web site -->
     <currentRelease>0.1-incubating</currentRelease>

Modified: incubator/directmemory/trunk/serializers/msgpack/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/serializers/msgpack/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/serializers/msgpack/pom.xml (original)
+++ incubator/directmemory/trunk/serializers/msgpack/pom.xml Thu Jun 21 
20:42:03 2012
@@ -17,15 +17,14 @@ 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>
     <groupId>org.apache.directmemory</groupId>
     <artifactId>directmemory-serializers</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
 
   <artifactId>directmemory-msgpack</artifactId>

Modified: incubator/directmemory/trunk/serializers/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/serializers/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/serializers/pom.xml (original)
+++ incubator/directmemory/trunk/serializers/pom.xml Thu Jun 21 20:42:03 2012
@@ -17,15 +17,13 @@
   ~ 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>
     <groupId>org.apache.directmemory</groupId>
     <artifactId>directmemory</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
 
   <artifactId>directmemory-serializers</artifactId>

Modified: incubator/directmemory/trunk/serializers/protobuf/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/serializers/protobuf/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/serializers/protobuf/pom.xml (original)
+++ incubator/directmemory/trunk/serializers/protobuf/pom.xml Thu Jun 21 
20:42:03 2012
@@ -17,15 +17,14 @@ 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>
     <groupId>org.apache.directmemory</groupId>
     <artifactId>directmemory-serializers</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
 
   <artifactId>directmemory-protobuf</artifactId>

Modified: incubator/directmemory/trunk/serializers/protostuff/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/serializers/protostuff/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/serializers/protostuff/pom.xml (original)
+++ incubator/directmemory/trunk/serializers/protostuff/pom.xml Thu Jun 21 
20:42:03 2012
@@ -17,15 +17,14 @@ 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>
     <groupId>org.apache.directmemory</groupId>
     <artifactId>directmemory-serializers</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
 
   <artifactId>directmemory-protostuff</artifactId>

Modified: 
incubator/directmemory/trunk/server/directmemory-server-archetype/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/server/directmemory-server-archetype/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/server/directmemory-server-archetype/pom.xml 
(original)
+++ incubator/directmemory/trunk/server/directmemory-server-archetype/pom.xml 
Thu Jun 21 20:42:03 2012
@@ -1,69 +1,69 @@
-<?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.server</groupId>
-    <artifactId>server</artifactId>
-    <version>0.1-SNAPSHOT</version>
-  </parent>
-
-  <artifactId>server-example-archetype</artifactId>
-  <packaging>maven-archetype</packaging>
-
-  <name>Apache DirectMemory :: Server :: Server Archetype</name>
-
-  <properties>
-    <directMemoryVersion>${project.version}</directMemoryVersion>
-    <archetypeVersion>2.2</archetypeVersion>
-  </properties>
-
-
-  <build>
-    <resources>
-      <resource>
-        <directory>src/main/resources</directory>
-        <filtering>true</filtering>
-      </resource>
-    </resources>
-    <extensions>
-      <extension>
-        <groupId>org.apache.maven.archetype</groupId>
-        <artifactId>archetype-packaging</artifactId>
-        <version>${archetypeVersion}</version>
-      </extension>
-    </extensions>
-
-    <pluginManagement>
-      <plugins>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-archetype-plugin</artifactId>
-          <version>${archetypeVersion}</version>
-        </plugin>
-      </plugins>
-    </pluginManagement>
-  </build>
-
-
-
-</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.server</groupId>
+    <artifactId>server</artifactId>
+    <version>0.1-incubating</version>
+  </parent>
+
+  <artifactId>server-example-archetype</artifactId>
+  <packaging>maven-archetype</packaging>
+
+  <name>Apache DirectMemory :: Server :: Server Archetype</name>
+
+  <properties>
+    <directMemoryVersion>${project.version}</directMemoryVersion>
+    <archetypeVersion>2.2</archetypeVersion>
+  </properties>
+
+
+  <build>
+    <resources>
+      <resource>
+        <directory>src/main/resources</directory>
+        <filtering>true</filtering>
+      </resource>
+    </resources>
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.archetype</groupId>
+        <artifactId>archetype-packaging</artifactId>
+        <version>${archetypeVersion}</version>
+      </extension>
+    </extensions>
+
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-archetype-plugin</artifactId>
+          <version>${archetypeVersion}</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+
+
+
+</project>

Modified: incubator/directmemory/trunk/server/directmemory-server-client/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/server/directmemory-server-client/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/server/directmemory-server-client/pom.xml 
(original)
+++ incubator/directmemory/trunk/server/directmemory-server-client/pom.xml Thu 
Jun 21 20:42:03 2012
@@ -18,13 +18,11 @@
   ~ 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";>
   <parent>
     <groupId>org.apache.directmemory.server</groupId>
     <artifactId>server</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 

Modified: 
incubator/directmemory/trunk/server/directmemory-server-commons/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/server/directmemory-server-commons/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/server/directmemory-server-commons/pom.xml 
(original)
+++ incubator/directmemory/trunk/server/directmemory-server-commons/pom.xml Thu 
Jun 21 20:42:03 2012
@@ -18,13 +18,11 @@
   ~ 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";>
   <parent>
     <groupId>org.apache.directmemory.server</groupId>
     <artifactId>server</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 

Modified: incubator/directmemory/trunk/server/directmemory-server/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/server/directmemory-server/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/server/directmemory-server/pom.xml (original)
+++ incubator/directmemory/trunk/server/directmemory-server/pom.xml Thu Jun 21 
20:42:03 2012
@@ -18,13 +18,11 @@
   ~ 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";>
   <parent>
     <groupId>org.apache.directmemory.server</groupId>
     <artifactId>server</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 

Modified: incubator/directmemory/trunk/server/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/directmemory/trunk/server/pom.xml?rev=1352671&r1=1352670&r2=1352671&view=diff
==============================================================================
--- incubator/directmemory/trunk/server/pom.xml (original)
+++ incubator/directmemory/trunk/server/pom.xml Thu Jun 21 20:42:03 2012
@@ -18,13 +18,11 @@
   ~ 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";>
   <parent>
     <groupId>org.apache.directmemory</groupId>
     <artifactId>directmemory</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>0.1-incubating</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 


Reply via email to