You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by sc...@apache.org on 2014/02/05 13:09:33 UTC

svn commit: r1564728 - in /wookie/trunk/wookie-services: wookie-jpa/ wookie-jpa/pom.xml wookie-redis/pom.xml

Author: scottbw
Date: Wed Feb  5 12:09:32 2014
New Revision: 1564728

URL: http://svn.apache.org/r1564728
Log:
added JPA provider module; also fixed incorrect version in Redis provider module

Added:
    wookie/trunk/wookie-services/wookie-jpa/
    wookie/trunk/wookie-services/wookie-jpa/pom.xml
Modified:
    wookie/trunk/wookie-services/wookie-redis/pom.xml

Added: wookie/trunk/wookie-services/wookie-jpa/pom.xml
URL: http://svn.apache.org/viewvc/wookie/trunk/wookie-services/wookie-jpa/pom.xml?rev=1564728&view=auto
==============================================================================
--- wookie/trunk/wookie-services/wookie-jpa/pom.xml (added)
+++ wookie/trunk/wookie-services/wookie-jpa/pom.xml Wed Feb  5 12:09:32 2014
@@ -0,0 +1,45 @@
+<?xml version="1.0"?>
+<!--
+  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/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.wookie</groupId>
+    <artifactId>wookie-jpa</artifactId>
+    <name>Apache Wookie :: JPA Service Provider</name>
+    <description>Apache Wookie JPA Service Provider</description>
+    <packaging>jar</packaging>
+    <version>2.0.0-SNAPSHOT</version>
+    
+    <parent>
+        <groupId>org.apache.wookie</groupId>
+        <artifactId>wookie-master</artifactId>
+        <version>2.0.0-SNAPSHOT</version>
+        <relativePath>../../../wookie-master-pom/trunk/pom.xml</relativePath>
+    </parent>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.wookie</groupId>
+            <artifactId>wookie-spi</artifactId>
+            <version>2.0.0-SNAPSHOT</version>
+            <type>jar</type>
+            <scope>compile</scope>
+        </dependency>
+    </dependencies>
+  
+</project>
\ No newline at end of file

Modified: wookie/trunk/wookie-services/wookie-redis/pom.xml
URL: http://svn.apache.org/viewvc/wookie/trunk/wookie-services/wookie-redis/pom.xml?rev=1564728&r1=1564727&r2=1564728&view=diff
==============================================================================
--- wookie/trunk/wookie-services/wookie-redis/pom.xml (original)
+++ wookie/trunk/wookie-services/wookie-redis/pom.xml Wed Feb  5 12:09:32 2014
@@ -44,7 +44,7 @@
         <dependency>
             <groupId>org.apache.wookie</groupId>
             <artifactId>wookie-spi</artifactId>
-            <version>2.2.1</version>
+            <version>2.0.0-SNAPSHOT</version>
             <type>jar</type>
             <scope>compile</scope>
         </dependency>