I have a Spring Roo project in which I have to use mongoDB using datanucleus and JDO.Presently when I generated all my classes from the below commands then i Found that all the annotations were taken from JPA.
//create top level package
project --topLevelPackage com.testproject2 --projectName TestProject2
//persistence setup
persistence setup --provider HIBERNATE --database MYSQL --databaseName "users" --hostName "127.0.0.1" --userName "root" --password "password"
//typical security
typicalsecurity setup
How should i use datanucleus support in my project?