Author: simonetripodi
Date: Wed Feb 15 16:02:17 2012
New Revision: 1244557
URL: http://svn.apache.org/viewvc?rev=1244557&view=rev
Log:
preparing the serializers and protostuff modules
Added:
incubator/directmemory/trunk/serializers/
incubator/directmemory/trunk/serializers/protostuff/ (with props)
incubator/directmemory/trunk/serializers/protostuff/pom.xml (with props)
incubator/directmemory/trunk/serializers/protostuff/src/
incubator/directmemory/trunk/serializers/protostuff/src/main/
incubator/directmemory/trunk/serializers/protostuff/src/main/java/
incubator/directmemory/trunk/serializers/protostuff/src/main/java/org/
incubator/directmemory/trunk/serializers/protostuff/src/main/java/org/apache/
incubator/directmemory/trunk/serializers/protostuff/src/main/java/org/apache/directmemory/
incubator/directmemory/trunk/serializers/protostuff/src/main/java/org/apache/directmemory/serialization/
Propchange: incubator/directmemory/trunk/serializers/protostuff/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Feb 15 16:02:17 2012
@@ -0,0 +1,2 @@
+bin
+target
Added: incubator/directmemory/trunk/serializers/protostuff/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/directmemory/trunk/serializers/protostuff/pom.xml?rev=1244557&view=auto
==============================================================================
--- incubator/directmemory/trunk/serializers/protostuff/pom.xml (added)
+++ incubator/directmemory/trunk/serializers/protostuff/pom.xml Wed Feb 15
16:02:17 2012
@@ -0,0 +1,89 @@
+<?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>
+
+ <artifactId>directmemory-protostuff</artifactId>
+ <name>Apache DirectMemory :: Serializers :: Protostuff</name>
+ <packaging>bundle</packaging>
+ <description>Protostuff 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)",
+ com.google.common.collect;version="[9.0,11)",
+ org.aspectj*;version="[1.6,2)",
+ org.josql*;version="[1.5,2)",
+ org.slf4j*,
+ *
+ </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>
+ </dependency>
+ <dependency>
+ <groupId>com.dyuproject.protostuff</groupId>
+ <artifactId>protostuff-runtime</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.dyuproject.protostuff</groupId>
+ <artifactId>protostuff-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.dyuproject.protostuff</groupId>
+ <artifactId>protostuff-api</artifactId>
+ </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>
+ <version>2.9</version>
+ <configuration>
+ <argLine>-Xmx512m -Xms512m -XX:MaxDirectMemorySize=512m</argLine>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
Propchange: incubator/directmemory/trunk/serializers/protostuff/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/directmemory/trunk/serializers/protostuff/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Revision Author HeadURL Id
Propchange: incubator/directmemory/trunk/serializers/protostuff/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml