Hi all!

I have been trying a few things and I have already continuum running using Oracle as DB.

I have only follow the steps given in the first link. At the end I got the attached file (package-oracle.orm).

Then I have copy this file to the WEB-INF/classes dir.

And finally, I have just setup the context.xml file.

Do you think could be possible to add this file to the official trunk in order to have it in next versions?

Best regards,

Raul

Raúl Casado Piqueras wrote:
Hi all!

We are thinking about running continuum in a production environment and we only have oracle database support. I know and understand that the db used is derby with the embedded driver. I have been researching a little bit and I have found several mail saying that running on Oracle could be possible:

http://mail-archives.apache.org/mod_mbox/maven-continuum-users/200710.mbox/[EMAIL PROTECTED]

There you can find that it could be possible by modifying a given file.
The problem for me is that I do not know what to do next with that file. Should I leave it in anyplace? unpackage any lib and repackage it again? i have found something about "pmf" but I can understand what that exactly means.

http://www.nabble.com/apply-continuum-patch--t2970260.html

Any help would be really appreciated.

Best regards,

Raul



<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE orm PUBLIC
    "-//Sun Microsystems, Inc.//DTD Java Data Objects Mapping Metadata 2.0//EN"
    "http://java.sun.com/dtd/jdo_orm_2_0.dtd";>
<orm>
  <package name="org.apache.maven.continuum.model.project">
    <class name="ProjectGroup">
      <field name="description">
        <column length="4000" jdbc-type="VARCHAR"/>
      </field>
    </class>
    <class name="Project">
      <field name="description">
        <column length="4000" jdbc-type="VARCHAR"/>
      </field>
    </class>
    <class name="BuildResult">
      <field name="error">
        <column length="4000" jdbc-type="VARCHAR"/>
      </field>
    </class>
  </package>
  <package name="org.apache.maven.continuum.model.scm">
    <class name="ScmResult">
      <field name="exception">
        <column name="exceptionstring" length="4000" jdbc-type="VARCHAR"/>
      </field>
    </class>
    <class name="ChangeSet">
      <field name="comment">
        <column name="changecomment" length="4000" jdbc-type="VARCHAR"/>
      </field>
    </class>
  </package>
</orm>

Reply via email to