Brett Meyer commented on an issue
Hibernate ORM / Bug HHH-7140
hibernate.hbm2ddl.auto does not respect location of domain object
I have some domain objects (with javax.persistence Entity annotations) where some of them connected to one and some to another database. Let me introduce a small example:

package one;
@Entity
@Table(name="objOne")
public class DomainObjOne {

}
....


package two;
@Entity
@Table(name="objTwo")
public class DomainObjTwo {

}

Now I have following sort of ...