Actuator endpoint not working on camunda spring boot application

Download the camunda springboot starter app, and adding the required dependencies and properties should create a http://localhost:8080/actuator endpoint, however that is not happening
implementation group: ‘org.springframework.boot’, name: ‘spring-boot-starter-actuator’, version: ‘2.5.0’
implementation group: ‘io.micrometer’, name: ‘micrometer-core’, version: ‘1.6.7’
implementation group: ‘io.micrometer’, name: ‘micrometer-registry-prometheus’, version: ‘1.6.6’

management.endpoint.metrics.enabled: true
management.endpoints.web.exposure.include: "*"
management.endpoint.prometheus.enabled: true
management.metrics.export.prometheus.enabled: true

I had problems with getting the swagger ui running at http://localhost:8080/swagger-ui.html running by adding required dependencies, same thing with actuator too. Is there something different that needs to be done with the camunda springboot starter app ?

Also what is the context of these apps ? ‘/’ ?