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/16 10:28:45 UTC

svn commit: r1244901 - in /incubator/directmemory/trunk/serializers: pom.xml protobuf/pom.xml

Author: simonetripodi
Date: Thu Feb 16 09:28:45 2012
New Revision: 1244901

URL: http://svn.apache.org/viewvc?rev=1244901&view=rev
Log:
protobuf added in the serializers module list

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

Modified: incubator/directmemory/trunk/serializers/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/serializers/pom.xml?rev=1244901&r1=1244900&r2=1244901&view=diff
==============================================================================
--- incubator/directmemory/trunk/serializers/pom.xml (original)
+++ incubator/directmemory/trunk/serializers/pom.xml Thu Feb 16 09:28:45 2012
@@ -36,6 +36,7 @@
   <description>${project.name}</description>
 
   <modules>
+    <module>protobuf</module>
     <module>protostuff</module>
     <module>msgpack</module>
   </modules>

Added: incubator/directmemory/trunk/serializers/protobuf/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/serializers/protobuf/pom.xml?rev=1244901&view=auto
==============================================================================
--- incubator/directmemory/trunk/serializers/protobuf/pom.xml (added)
+++ incubator/directmemory/trunk/serializers/protobuf/pom.xml Thu Feb 16 09:28:45 2012
@@ -0,0 +1,78 @@
+<?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-serializers</artifactId>
+    <version>0.5.5-SNAPSHOT</version>
+    <relativePath>../</relativePath>
+  </parent>
+
+  <artifactId>directmemory-protobuf</artifactId>
+  <name>Apache DirectMemory :: Serializers :: Protobuf</name>
+  <packaging>bundle</packaging>
+  <description>Protobuf serializer adapter for DirectMemory Cache</description>
+
+  <!-- TODO need the help of some OSGi expert here -->
+  <properties>
+    <osgi.import>
+      !org.apache.directmemory*,
+      com.dyuproject.protostuff*;version="[1,2)",
+      *
+    </osgi.import>
+    <osgi.export>org.apache.directmemory*;version="${project.version}</osgi.export>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.parent.groupId}</groupId>
+      <artifactId>directmemory-cache</artifactId>
+      <version>${project.parent.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+      <version>2.4.1</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <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>
+
+</project>

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

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

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