@deepu105 I tried it using 8.0.0-beta.1 and found the following error
ERROR! An error occured while running jhipster:jdl#parseJDL
ERROR! ERROR! In the relationship between Customer and User, User is not declared. If ‘User’ is a built-in entity declare like ‘Customer to User with builtInEntity’.
I changed the relationship in app.jdl file as
relationship OneToOne {
Customer to User with builtInEntity
}
It fixed my error. Do you think this is a correct fix?