Skip to content

Commit 6236d2d

Browse files
author
Johannes Stelzer
committed
Rename starter as requested in spring-projects/spring-boot#2537
1 parent d443b6e commit 6236d2d

File tree

18 files changed

+7
-6
lines changed

18 files changed

+7
-6
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<module>spring-boot-admin-server</module>
3838
<module>spring-boot-admin-server-ui</module>
3939
<module>spring-boot-admin-samples</module>
40-
<module>spring-boot-starter-admin-client</module>
40+
<module>spring-boot-admin-starter-client</module>
4141
</modules>
4242

4343
<organization>
@@ -208,7 +208,7 @@
208208
</dependency>
209209
<dependency>
210210
<groupId>de.codecentric</groupId>
211-
<artifactId>spring-boot-starter-admin-client</artifactId>
211+
<artifactId>spring-boot-admin-starter-client</artifactId>
212212
<version>${project.version}</version>
213213
</dependency>
214214
<dependency>

spring-boot-admin-samples/spring-boot-admin-sample/src/main/resources/application.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ info:
22
version: @pom.version@
33
stage: test
44

5-
5+
logging:
6+
file: boot-admin-sample.log
67

78
spring:
89
application:

spring-boot-admin-server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class Application {
3131
```
3232

3333
## Spring Cloud DiscoveryClient support
34-
The Spring Boot Admin Server is capable of using Spring Clouds DiscoveryClient to discover applications. When you do this the clients don't have to include the spring-boot-starter-admin-client. You just have to configure a DiscoveryClient - everything else is done by AutoConfiguration.
34+
The Spring Boot Admin Server is capable of using Spring Clouds DiscoveryClient to discover applications. When you do this the clients don't have to include the spring-boot-admin-starter-client. You just have to configure a DiscoveryClient - everything else is done by AutoConfiguration.
3535
See the [discovery sample project](https://github.com/codecentric/spring-boot-admin/tree/master/spring-boot-admin-samples/spring-boot-admin-sample-discovery) in this repository.
3636

3737
One note: If you omit the Spring Boot Admin Client in you Client Applications you can't download the logfile (but hopefully my pull request will make it into Spring Boot 1.3.0);

spring-boot-admin-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<dependencies>
1212
<dependency>
1313
<groupId>de.codecentric</groupId>
14-
<artifactId>spring-boot-starter-admin-client</artifactId>
14+
<artifactId>spring-boot-admin-starter-client</artifactId>
1515
</dependency>
1616
<dependency>
1717
<groupId>org.springframework.boot</groupId>
File renamed without changes.

spring-boot-starter-admin-client/pom.xml renamed to spring-boot-admin-starter-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<version>1.1.3-SNAPSHOT</version>
88
<relativePath>..</relativePath>
99
</parent>
10-
<artifactId>spring-boot-starter-admin-client</artifactId>
10+
<artifactId>spring-boot-admin-starter-client</artifactId>
1111
<dependencies>
1212
<dependency>
1313
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)