You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directmemory.apache.org by si...@apache.org on 2012/02/15 21:28:16 UTC

svn commit: r1244687 - in /incubator/directmemory/trunk: pom.xml serializers/pom.xml serializers/protostuff/pom.xml

Author: simonetripodi
Date: Wed Feb 15 20:28:16 2012
New Revision: 1244687

URL: http://svn.apache.org/viewvc?rev=1244687&view=rev
Log:
added serializers parent pom

Added:
    incubator/directmemory/trunk/serializers/pom.xml   (with props)
Modified:
    incubator/directmemory/trunk/pom.xml
    incubator/directmemory/trunk/serializers/protostuff/pom.xml

Modified: incubator/directmemory/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/pom.xml?rev=1244687&r1=1244686&r2=1244687&view=diff
==============================================================================
--- incubator/directmemory/trunk/pom.xml (original)
+++ incubator/directmemory/trunk/pom.xml Wed Feb 15 20:28:16 2012
@@ -195,7 +195,7 @@ under the License.
     <module>directmemory-cache</module>
     <module>platforms</module>
     <module>integrations</module>
-    <module>serializers/protostuff</module>
+    <module>serializers</module>
     <module>itests</module>
   </modules>
 

Added: incubator/directmemory/trunk/serializers/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/serializers/pom.xml?rev=1244687&view=auto
==============================================================================
--- incubator/directmemory/trunk/serializers/pom.xml (added)
+++ incubator/directmemory/trunk/serializers/pom.xml Wed Feb 15 20:28:16 2012
@@ -0,0 +1,58 @@
+<?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.5.5-SNAPSHOT</version>
+    <relativePath>../</relativePath>
+  </parent>
+
+  <groupId>org.apache.directmemory</groupId>
+  <artifactId>directmemory-serializers</artifactId>
+  <packaging>pom</packaging>
+  <name>Apache DirectMemory :: Serializers</name>
+  <description>${project.name}</description>
+
+  <modules>
+    <module>protostuff</module>
+  </modules>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.parent.groupId}</groupId>
+      <artifactId>directmemory-cache</artifactId>
+      <version>${project.parent.version}</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.kohsuke.metainf-services</groupId>
+      <artifactId>metainf-services</artifactId>
+      <version>1.3</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+
+</project>

Propchange: incubator/directmemory/trunk/serializers/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/directmemory/trunk/serializers/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/directmemory/trunk/serializers/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: incubator/directmemory/trunk/serializers/protostuff/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/serializers/protostuff/pom.xml?rev=1244687&r1=1244686&r2=1244687&view=diff
==============================================================================
--- incubator/directmemory/trunk/serializers/protostuff/pom.xml (original)
+++ incubator/directmemory/trunk/serializers/protostuff/pom.xml Wed Feb 15 20:28:16 2012
@@ -24,9 +24,9 @@ under the License.
 
   <parent>
     <groupId>org.apache.directmemory</groupId>
-    <artifactId>directmemory-parent</artifactId>
+    <artifactId>directmemory-serializers</artifactId>
     <version>0.5.5-SNAPSHOT</version>
-    <relativePath>../../</relativePath>
+    <relativePath>../</relativePath>
   </parent>
 
   <artifactId>directmemory-protostuff</artifactId>