You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by br...@apache.org on 2005/08/12 06:00:01 UTC

svn commit: r232199 - /maven/continuum/trunk/continuum-model/src/main/resources/META-INF/package.jdo

Author: brett
Date: Thu Aug 11 20:59:55 2005
New Revision: 232199

URL: http://svn.apache.org/viewcvs?rev=232199&view=rev
Log:
the superclass strategy wasn't working under the new setup, but this will go away soon anyway

Modified:
    maven/continuum/trunk/continuum-model/src/main/resources/META-INF/package.jdo

Modified: maven/continuum/trunk/continuum-model/src/main/resources/META-INF/package.jdo
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-model/src/main/resources/META-INF/package.jdo?rev=232199&r1=232198&r2=232199&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-model/src/main/resources/META-INF/package.jdo (original)
+++ maven/continuum/trunk/continuum-model/src/main/resources/META-INF/package.jdo Thu Aug 11 20:59:55 2005
@@ -101,21 +101,21 @@
     </class>
     <class name="MavenTwoProject" persistence-capable-superclass="org.apache.maven.continuum.project.ContinuumProject"
            detachable="true">
-      <inheritance strategy="superclass-table"/>
+      <inheritance strategy="new-table" />
       <field name="goals" persistence-modifier="persistent">
         <column name="M2_GOALS"/>
       </field>
     </class>
     <class name="MavenOneProject" persistence-capable-superclass="org.apache.maven.continuum.project.ContinuumProject"
            detachable="true">
-      <inheritance strategy="superclass-table"/>
+      <inheritance strategy="new-table" />
       <field name="goals" persistence-modifier="persistent">
         <column name="M1_GOALS"/>
       </field>
     </class>
     <class name="AntProject" persistence-capable-superclass="org.apache.maven.continuum.project.ContinuumProject"
            detachable="true">
-      <inheritance strategy="superclass-table"/>
+      <inheritance strategy="new-table" />
       <field name="executable" persistence-modifier="persistent">
         <column name="ANT_EXECUTABLE"/>
       </field>
@@ -123,7 +123,7 @@
     </class>
     <class name="ShellProject" persistence-capable-superclass="org.apache.maven.continuum.project.ContinuumProject"
            detachable="true">
-      <inheritance strategy="superclass-table"/>
+      <inheritance strategy="new-table" />
       <field name="executable" persistence-modifier="persistent">
         <column name="SHELL_EXECUTABLE"/>
       </field>