Associate all Custom Post Types with Taxonomy

You simply made a mistake on the key to use : it’s taxonomies not taxonomy.

$args = array(
    'taxonomies' => array('publications')
);
register_post_type( 'imagery', $args );