diff --git a/spring-boot-cli/samples/ops.groovy b/spring-boot-cli/samples/actuator.groovy similarity index 64% rename from spring-boot-cli/samples/ops.groovy rename to spring-boot-cli/samples/actuator.groovy index 511b42c2e88..72dc5df16b0 100644 --- a/spring-boot-cli/samples/ops.groovy +++ b/spring-boot-cli/samples/actuator.groovy @@ -1,6 +1,6 @@ package org.test -@Grab("org.springframework.boot:spring-boot-starter-ops:0.5.0.BUILD-SNAPSHOT") +@Grab("org.springframework.boot:spring-boot-starter-actuator:0.5.0.BUILD-SNAPSHOT") @Controller class SampleController { diff --git a/spring-boot-cli/src/test/java/org/springframework/boot/cli/SampleIntegrationTests.java b/spring-boot-cli/src/test/java/org/springframework/boot/cli/SampleIntegrationTests.java index 0d12dce8c42..804740b3f74 100644 --- a/spring-boot-cli/src/test/java/org/springframework/boot/cli/SampleIntegrationTests.java +++ b/spring-boot-cli/src/test/java/org/springframework/boot/cli/SampleIntegrationTests.java @@ -160,8 +160,8 @@ public class SampleIntegrationTests { } @Test - public void opsSample() throws Exception { - start("samples/ops.groovy"); + public void actuatorSample() throws Exception { + start("samples/actuator.groovy"); String result = FileUtil.readEntirely(new URL("http://localhost:8080") .openStream()); assertEquals("{\"message\":\"Hello World!\"}", result); diff --git a/spring-boot-samples/spring-boot-sample-actuator-ui/pom.xml b/spring-boot-samples/spring-boot-sample-actuator-ui/pom.xml index bd54df1452e..1c07bc7eedf 100644 --- a/spring-boot-samples/spring-boot-sample-actuator-ui/pom.xml +++ b/spring-boot-samples/spring-boot-sample-actuator-ui/pom.xml @@ -15,7 +15,7 @@ ${project.groupId} - spring-boot-starter-ops + spring-boot-starter-actuator ${project.version} diff --git a/spring-boot-samples/spring-boot-sample-actuator/pom.xml b/spring-boot-samples/spring-boot-sample-actuator/pom.xml index 2a56c77fb1a..27d22f94999 100644 --- a/spring-boot-samples/spring-boot-sample-actuator/pom.xml +++ b/spring-boot-samples/spring-boot-sample-actuator/pom.xml @@ -15,7 +15,7 @@ ${project.groupId} - spring-boot-starter-ops + spring-boot-starter-actuator ${project.version} diff --git a/spring-boot-starters/spring-boot-starter-actuator/pom.xml b/spring-boot-starters/spring-boot-starter-actuator/pom.xml index 6a605122afd..609aa23813a 100644 --- a/spring-boot-starters/spring-boot-starter-actuator/pom.xml +++ b/spring-boot-starters/spring-boot-starter-actuator/pom.xml @@ -20,7 +20,7 @@ ${project.groupId} - spring-boot-ops + spring-boot-actuator ${project.version}