Author: ppoddar
Date: Wed Jan  7 10:33:24 2009
New Revision: 732418

URL: http://svn.apache.org/viewvc?rev=732418&view=rev
Log:
OPENJPA-850: Add persistence.xml for equivalent configuration support testing

Added:
    
openjpa/trunk/openjpa-persistence-jdbc/src/test/resources/org/apache/openjpa/lib/conf/META-INF/
    
openjpa/trunk/openjpa-persistence-jdbc/src/test/resources/org/apache/openjpa/lib/conf/META-INF/persistence.xml

Added: 
openjpa/trunk/openjpa-persistence-jdbc/src/test/resources/org/apache/openjpa/lib/conf/META-INF/persistence.xml
URL: 
http://svn.apache.org/viewvc/openjpa/trunk/openjpa-persistence-jdbc/src/test/resources/org/apache/openjpa/lib/conf/META-INF/persistence.xml?rev=732418&view=auto
==============================================================================
--- 
openjpa/trunk/openjpa-persistence-jdbc/src/test/resources/org/apache/openjpa/lib/conf/META-INF/persistence.xml
 (added)
+++ 
openjpa/trunk/openjpa-persistence-jdbc/src/test/resources/org/apache/openjpa/lib/conf/META-INF/persistence.xml
 Wed Jan  7 10:33:24 2009
@@ -0,0 +1,67 @@
+<?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.   
+-->
+<persistence xmlns="http://java.sun.com/xml/ns/persistence";
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+    version="1.0">
+
+    <!-- =================================================================== 
--> 
+    <!-- Following configurations are used for testing old and new style     
-->
+    <!-- configuration properties in javax.* and openjpa.* namespace.        
-->
+    <!--                                                                     
-->
+    <!-- @see org.apache.openjpa.lib.conf.TestEquivalentConfig               
-->
+    <!-- =================================================================== 
--> 
+    
+    <persistence-unit name="old-style">
+       <properties>
+            <property name="openjpa.ConnectionDriverName" 
value="org.apache.derby.jdbc.EmbeddedDriver"/>
+            <property name="openjpa.ConnectionURL"        
value="jdbc:derby:target/database/openjpa-test-database;create=true"/>
+       </properties>
+    </persistence-unit>
+    
+    <persistence-unit name="new-style">
+       <properties>
+            <property name="javax.persistence.jdbc.driver" 
value="org.apache.derby.jdbc.EmbeddedDriver"/>
+            <property name="javax.persistence.jdbc.url"    
value="jdbc:derby:target/database/openjpa-test-database;create=true"/>
+       </properties>
+    </persistence-unit>
+    
+    <persistence-unit name="mixed-style">
+       <properties>
+            <property name="javax.persistence.jdbc.driver" 
value="org.apache.derby.jdbc.EmbeddedDriver"/>
+            <property name="openjpa.ConnectionURL"    
value="jdbc:derby:target/database/openjpa-test-database;create=true"/>
+       </properties>
+    </persistence-unit>
+       
+    <persistence-unit name="conflict-style">
+       <properties>
+            <property name="javax.persistence.jdbc.driver" 
value="org.apache.derby.jdbc.EmbeddedDriver"/>
+            <property name="openjpa.ConnectionDriverName" 
value="org.apache.derby.jdbc.EmbeddedDriver"/>
+            <property name="openjpa.ConnectionURL"    
value="jdbc:derby:target/database/openjpa-test-database;create=true"/>
+       </properties>
+    </persistence-unit>
+       
+    <persistence-unit name="system-configured">
+    </persistence-unit>
+    
+    <persistence-unit name="runtime-configured">
+    </persistence-unit>
+    
+
+</persistence>


Reply via email to