Upon upgrading to Hibernate 5.6.0.Final, I found that org.hibernate.annotations.Type is now deprecated. I use this annotation in many of my entities, including places where I leverage Hibernate's own NumericBooleanType:
@Type(type = "org.hibernate.type.NumericBooleanType")
private Boolean debug = false;
I've searched Hibernate docs (migration guides - of which the 6.0 version gives me a 404 from http://hibernate.org/orm/documentation/6.0/), Javadocs, forums, and the web to find a replacement, to no avail.
Does anyone know what I can do now in Hibernate 5.6.0 to prepare my code using the Type annotation for the transition to Hibernate 6?