You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2007/09/04 09:33:28 UTC

svn commit: r572560 - in /myfaces/tobago/trunk/example/addressbook: pom.xml src/main/resources/META-INF/persistence.xml

Author: bommel
Date: Tue Sep  4 00:33:27 2007
New Revision: 572560

URL: http://svn.apache.org/viewvc?rev=572560&view=rev
Log:
openjpa 1.0.0 has been released

Modified:
    myfaces/tobago/trunk/example/addressbook/pom.xml
    myfaces/tobago/trunk/example/addressbook/src/main/resources/META-INF/persistence.xml

Modified: myfaces/tobago/trunk/example/addressbook/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/addressbook/pom.xml?rev=572560&r1=572559&r2=572560&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/addressbook/pom.xml (original)
+++ myfaces/tobago/trunk/example/addressbook/pom.xml Tue Sep  4 00:33:27 2007
@@ -122,12 +122,6 @@
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/trunk/example/addressbook</developerConnection>
     <url>http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/addressbook</url>
   </scm>
-  <repositories>
-    <repository>
-      <id>apache-incubating</id>
-      <url>http://people.apache.org/repo/m2-incubating-repository</url>
-    </repository>
-  </repositories>
   <dependencies>
    <!-- <dependency>
       <groupId>org.apache.openjpa</groupId>
@@ -227,7 +221,7 @@
     <dependency>
       <groupId>org.apache.derby</groupId>
       <artifactId>derby</artifactId>
-      <version>10.2.2.0</version>
+      <version>10.3.1.4</version>
     </dependency>
     <dependency>
       <groupId>org.springframework</groupId>
@@ -325,8 +319,7 @@
     </profile>
   </profiles>
   <properties>
-    <!-- please look at the persistence.xml if updating to 1.0.0 -->
-    <openjpa.version>0.9.7-incubating</openjpa.version>
+    <openjpa.version>1.0.0</openjpa.version>
     <spring.version>2.0.6</spring.version>
   </properties>
 </project>

Modified: myfaces/tobago/trunk/example/addressbook/src/main/resources/META-INF/persistence.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/addressbook/src/main/resources/META-INF/persistence.xml?rev=572560&r1=572559&r2=572560&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/addressbook/src/main/resources/META-INF/persistence.xml (original)
+++ myfaces/tobago/trunk/example/addressbook/src/main/resources/META-INF/persistence.xml Tue Sep  4 00:33:27 2007
@@ -22,12 +22,10 @@
     <persistence-unit name="addressBook" transaction-type="RESOURCE_LOCAL">
       <class>org.apache.myfaces.tobago.example.addressbook.Address</class>
       <class>org.apache.myfaces.tobago.example.addressbook.Picture</class>
-      <!-- QueryCompilationCache must be disabled for the 0.9.7-incubating version.
-        See https://issues.apache.org/jira/browse/OPENJPA-256
-        May be removed if the 1.0.0 version has been released
-      -->
+
       <properties>
-        <property name="openjpa.QueryCompilationCache" value="false"/>
+        <property name="openjpa.RuntimeClassOptimization" value="false"/>
+        <property name="openjpa.Log" value="DefaultLevel=TRACE"/> 
       </properties>
 
     </persistence-unit>