I was missing spring-cloud-starter-bootstrap
dependency on my pom.xml
, so all I needed was to add this:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
</dependency>
Hope it helps somebody ;)