diff --git a/examples/hawkbit-device-simulator/pom.xml b/examples/hawkbit-device-simulator/pom.xml index b3f612df4..d9d8fd23a 100644 --- a/examples/hawkbit-device-simulator/pom.xml +++ b/examples/hawkbit-device-simulator/pom.xml @@ -91,6 +91,10 @@ org.springframework.boot spring-boot-starter + + org.springframework.boot + spring-boot-starter-actuator + com.vaadin vaadin-spring-boot-starter diff --git a/examples/hawkbit-device-simulator/src/main/resources/application.properties b/examples/hawkbit-device-simulator/src/main/resources/application.properties index 647e6a852..cc71f9039 100644 --- a/examples/hawkbit-device-simulator/src/main/resources/application.properties +++ b/examples/hawkbit-device-simulator/src/main/resources/application.properties @@ -24,6 +24,8 @@ hawkbit.device.simulator.attributes[1].value=1.1 hawkbit.device.simulator.attributes[2].key=serial hawkbit.device.simulator.attributes[2].value=${random.value} +endpoints.health.enabled=true + ## Configuration for local RabbitMQ integration spring.rabbitmq.username=guest spring.rabbitmq.password=guest diff --git a/hawkbit-runtime/hawkbit-update-server/pom.xml b/hawkbit-runtime/hawkbit-update-server/pom.xml index 1d6d087ac..df4eef86d 100644 --- a/hawkbit-runtime/hawkbit-update-server/pom.xml +++ b/hawkbit-runtime/hawkbit-update-server/pom.xml @@ -61,7 +61,10 @@ hawkbit-boot-starter ${project.version} - + + org.springframework.boot + spring-boot-starter-actuator + com.h2database h2