project --topLevelPackage org.ksug.store persistence setup --database HYPERSONIC_PERSISTENT --provider HIBERNATE database properties set --key database.url --value jdbc:hsqldb:hsql://localhost/sampledb entity --class ~.domain.Liquor field string productName --notNull field string --fieldName factory --sizeMax 100 field number --fieldName alcoholRate --type java.lang.Float entity --class ~.domain.Guest --testAutomatically field string name --notNull field number --fieldName age --type java.lang.Integer --sizeMin 20 --sizeMax 80 field date --fieldName birthDay --type java.util.Date field boolean --fieldName special field reference --fieldName favorite --type ~.domain.Liquor controller all --package ~.web test mock --entity ~.domain.Liquor test integration --entity ~.domain.Liquor selenium test --controller ~.web.LiquorController selenium test --controller ~.web.GuestController exit