since version 2.0 of jackson-data the isIgnorable...() methods of AnnotationIntrospector are replaced with hasIgnoreMarker(). Therefore Feature.USE_TRANSIENT_ANNOTATION does not work.
In class HibernateAnnotationIntrospector the isIgnorable...() methods should be replaced by:
@Override
public boolean hasIgnoreMarker(AnnotatedMember m) {
return _cfgCheckTransient && m.hasAnnotation(Transient.class);
}