[jboss-cvs] jboss-seam/examples/wiki/src/etc/META-INF ...

Christian Bauer christian at hibernate.org
Thu Jan 3 09:54:34 EST 2008


  User: cbauer  
  Date: 08/01/03 09:54:34

  Modified:    examples/wiki/src/etc/META-INF     persistence-prod-war.xml
                        persistence-test-war.xml persistence-dev-war.xml
                        components-dev.xml
  Log:
  Dev profile now requires MySQL, disabled tests conditionally that don't run on HSQL
  
  Revision  Changes    Path
  1.14      +1 -1      jboss-seam/examples/wiki/src/etc/META-INF/persistence-prod-war.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: persistence-prod-war.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/src/etc/META-INF/persistence-prod-war.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -b -r1.13 -r1.14
  --- persistence-prod-war.xml	30 Dec 2007 02:33:21 -0000	1.13
  +++ persistence-prod-war.xml	3 Jan 2008 14:54:34 -0000	1.14
  @@ -16,7 +16,7 @@
               <!-- Logging -->
               <property name="hibernate.show_sql" value="false"/>
               <property name="hibernate.use_sql_comments" value="true"/>
  -            <property name="hibernate.format_sql" value="true"/>
  +            <property name="hibernate.format_sql" value="false"/>
   
               <!-- Search engine -->
               <property name="hibernate.search.default.directory_provider"
  
  
  
  1.12      +1 -1      jboss-seam/examples/wiki/src/etc/META-INF/persistence-test-war.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: persistence-test-war.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/src/etc/META-INF/persistence-test-war.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -b -r1.11 -r1.12
  --- persistence-test-war.xml	30 Dec 2007 02:33:21 -0000	1.11
  +++ persistence-test-war.xml	3 Jan 2008 14:54:34 -0000	1.12
  @@ -10,7 +10,7 @@
           <jta-data-source>java:/wikiTestDatasource</jta-data-source>
           <properties>
   
  -            <!--
  +            <!-- MySQL also requires changes to AllTests.tng.xml and wiki-test-ds.xml
               <property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect"/>
               -->
               <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"/>
  
  
  
  1.16      +1 -4      jboss-seam/examples/wiki/src/etc/META-INF/persistence-dev-war.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: persistence-dev-war.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/src/etc/META-INF/persistence-dev-war.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -b -r1.15 -r1.16
  --- persistence-dev-war.xml	30 Dec 2007 02:33:21 -0000	1.15
  +++ persistence-dev-war.xml	3 Jan 2008 14:54:34 -0000	1.16
  @@ -7,15 +7,12 @@
   
       <persistence-unit name="wiki" transaction-type="JTA">
           <provider>org.hibernate.ejb.HibernatePersistence</provider>
  -
           <jta-data-source>java:/wikiDatasource</jta-data-source>
           <properties>
  -
  +            <property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect"/>
               <property name="hibernate.transaction.manager_lookup_class"
                         value="org.hibernate.transaction.JBossTransactionManagerLookup"/>
   
  -            <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"/>
  -
               <!-- Automatic schema export and drop -->
               <property name="hibernate.hbm2ddl.auto" value="create-drop"/>
               <!--
  
  
  
  1.3       +1 -1      jboss-seam/examples/wiki/src/etc/META-INF/components-dev.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: components-dev.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/src/etc/META-INF/components-dev.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- components-dev.xml	30 Dec 2007 02:33:21 -0000	1.2
  +++ components-dev.xml	3 Jan 2008 14:54:34 -0000	1.3
  @@ -20,7 +20,7 @@
   
       <!-- Some DBUnit datasets we use in unit testing - let's also use them in dev mode when the app is deployed -->
       <component name="dbunitImporter" class="org.jboss.seam.wiki.util.DBUnitImporter" scope="APPLICATION" auto-create="true">
  -        <property name="database">hsql</property>
  +        <property name="database">mysql</property>
           <property name="datasourceJndiName">java:/wikiDatasource</property>
           <property name="binaryDir">META-INF/testbinaries</property>
           <property name="datasets">
  
  
  



More information about the jboss-cvs-commits mailing list