Skip to content

Commit 4c067a8

Browse files
committed
Ops -> Actuator
1 parent d1ceed2 commit 4c067a8

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Diff for: spring-boot-cli/samples/ops.groovy renamed to spring-boot-cli/samples/actuator.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package org.test
22

3-
@Grab("org.springframework.boot:spring-boot-starter-ops:0.5.0.BUILD-SNAPSHOT")
3+
@Grab("org.springframework.boot:spring-boot-starter-actuator:0.5.0.BUILD-SNAPSHOT")
44

55
@Controller
66
class SampleController {

Diff for: spring-boot-cli/src/test/java/org/springframework/boot/cli/SampleIntegrationTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ public void uiSample() throws Exception {
160160
}
161161

162162
@Test
163-
public void opsSample() throws Exception {
164-
start("samples/ops.groovy");
163+
public void actuatorSample() throws Exception {
164+
start("samples/actuator.groovy");
165165
String result = FileUtil.readEntirely(new URL("http://localhost:8080")
166166
.openStream());
167167
assertEquals("{\"message\":\"Hello World!\"}", result);

Diff for: spring-boot-samples/spring-boot-sample-actuator-ui/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<dependencies>
1616
<dependency>
1717
<groupId>${project.groupId}</groupId>
18-
<artifactId>spring-boot-starter-ops</artifactId>
18+
<artifactId>spring-boot-starter-actuator</artifactId>
1919
<version>${project.version}</version>
2020
</dependency>
2121
<dependency>

Diff for: spring-boot-samples/spring-boot-sample-actuator/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<dependencies>
1616
<dependency>
1717
<groupId>${project.groupId}</groupId>
18-
<artifactId>spring-boot-starter-ops</artifactId>
18+
<artifactId>spring-boot-starter-actuator</artifactId>
1919
<version>${project.version}</version>
2020
<exclusions>
2121
<exclusion>

Diff for: spring-boot-starters/spring-boot-starter-actuator/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</dependency>
2121
<dependency>
2222
<groupId>${project.groupId}</groupId>
23-
<artifactId>spring-boot-ops</artifactId>
23+
<artifactId>spring-boot-actuator</artifactId>
2424
<version>${project.version}</version>
2525
</dependency>
2626
</dependencies>

0 commit comments

Comments
 (0)