For persistence I first used
I then (later on the same project) enteredCode:persistence setup --provider HIBERNATE --database HYPERSONIC_IN_MEMORY
Roo then creating the following POM dependencyCode:persistence setup --provider HIBERNATE --database ORACLE
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?Code:<dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc14</artifactId> <version>10.2.0.2</version> </dependency>


Reply With Quote