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

Why can rails not find a route created by a helper? -

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -