hibernate - Grails autoImport false for all domains in a plugin -
i have couple of grails projects using 'common' grails project in form of plugin. due domain object name clashes, autoimport
should set false
domain objects in common project, i.e.
class somedomain{ string id string value static mapping = { autoimport false } }
is there way change autoimport default domain classes in plugin project? thought trying change datasource in common project, won't preserved when used plugin.
Comments
Post a Comment