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

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -