I am having trouble auto wiring a feign client from another project. It appears that the implementation of the feign client is not being generated and injected.
This
You need to tell the Feign scanner where to locate the interfaces.
You can use @EnableFeignClients(basePackages = {"my.external.feign.client.package", "my.local.package"}).
@EnableFeignClients(basePackages = {"my.external.feign.client.package", "my.local.package"})