For persistence I first used
Code:
persistence setup --provider HIBERNATE --database HYPERSONIC_IN_MEMORY
I then (later on the same project) entered
Code:
persistence setup  --provider HIBERNATE --database ORACLE
Roo then creating the following POM dependency
Code:
<dependency>
            <groupId>com.oracle</groupId>
            <artifactId>ojdbc14</artifactId>
            <version>10.2.0.2</version>
        </dependency>
Is the Oracle version is hard coded to 10.2.0.2? (If not where can I adjust it?) If so and if it doesn't match our version then the POM has to be edited. Wouldn't it be better to have some parameters on the persisence setup to direct Roo to use the correct version?