OPENJPA-513. Three of the four test failures with the IBM JDK were due to a malformed listener-orm.xml file. XML elements were out of order and there were a couple of syntax errors.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@620200 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Kevin W. Sutter 2008-02-09 20:53:49 +00:00
parent 94f233f0d8
commit 8de471e541
1 changed files with 6 additions and 5 deletions

View File

@ -21,16 +21,17 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm orm_1_0.xsd"
version="1.0">
<package>org.apache.openjpa.persistence.callbacks</package>
<entity class="EntityListenerEntity">
<exclude-default-listeners>true</exclude-default-listeners>
</entity>
<persistence-unit-metadata>
<persistence-unit-defaults>
<entity-listeners>
<entity-listener class="ListenerImpl">
<entity-listener class=
"org.apache.openjpa.persistence.callbacks.ListenerImpl">
</entity-listener>
</entity-listeners>
</persistence-unit-defaults>
</persistence-unit-metadata>
<package>org.apache.openjpa.persistence.callbacks</package>
<entity class="EntityListenerEntity">
<exclude-default-listeners/>
</entity>
</entity-mappings>