You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2011/01/05 20:39:23 UTC

svn commit: r1055602 - in /geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org: ./ jboss/ jboss/jsr299/ jboss/jsr299/tck/ jboss/jsr299/tck/tests/ jboss/jsr299/tck/tests/implementation/ jboss/jsr299/tck/tests/implementation/simple/ jboss/js...

Author: djencks
Date: Wed Jan  5 19:39:22 2011
New Revision: 1055602

URL: http://svn.apache.org/viewvc?rev=1055602&view=rev
Log:
Add persistence.xml suitable for geronimo

Added:
    geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/
    geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/jboss/
    geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/jboss/jsr299/
    geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/jboss/jsr299/tck/
    geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/jboss/jsr299/tck/tests/
    geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/jboss/jsr299/tck/tests/implementation/
    geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/jboss/jsr299/tck/tests/implementation/simple/
    geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/jboss/jsr299/tck/tests/implementation/simple/resource/
    geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/jboss/jsr299/tck/tests/implementation/simple/resource/persistenceContext/
    geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/jboss/jsr299/tck/tests/implementation/simple/resource/persistenceContext/persistence.xml

Added: geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/jboss/jsr299/tck/tests/implementation/simple/resource/persistenceContext/persistence.xml
URL: http://svn.apache.org/viewvc/geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/jboss/jsr299/tck/tests/implementation/simple/resource/persistenceContext/persistence.xml?rev=1055602&view=auto
==============================================================================
--- geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/jboss/jsr299/tck/tests/implementation/simple/resource/persistenceContext/persistence.xml (added)
+++ geronimo/tck/branches/3.0/jcdi-tck-runner/src/main/resources/org/jboss/jsr299/tck/tests/implementation/simple/resource/persistenceContext/persistence.xml Wed Jan  5 19:39:22 2011
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<persistence xmlns="http://java.sun.com/xml/ns/persistence"
+             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
+             version="1.0">
+   <persistence-unit name="test">
+      <jta-data-source>SystemDatasource</jta-data-source>
+      <non-jta-data-source>NoTxDatasource</non-jta-data-source>
+   </persistence-unit>
+</persistence>