Skip to content

Commit 364f2af

Browse files
committed
Remove left-over code and dependencies for Spring Boot Admin
This was missed in commit 316ae4c.
1 parent f7c7e4b commit 364f2af

File tree

2 files changed

+0
-25
lines changed

2 files changed

+0
-25
lines changed

pom.xml

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -128,29 +128,6 @@
128128
<version>${therapi.version}</version>
129129
</dependency>
130130

131-
<dependency>
132-
<!--
133-
Server for https://github.com/codecentric/spring-boot-admin/.
134-
In this example project, the server and the client of Spring
135-
Boot Admin run in the same application. In production, however,
136-
you will typically run the server (think: central monitoring
137-
process) separately from the clients, which are your "actual"
138-
applications.
139-
-->
140-
<groupId>de.codecentric</groupId>
141-
<artifactId>spring-boot-admin-starter-server</artifactId>
142-
<version>${spring-boot-admin.version}</version>
143-
</dependency>
144-
145-
<dependency>
146-
<!--
147-
Client for https://github.com/codecentric/spring-boot-admin/.
148-
-->
149-
<groupId>de.codecentric</groupId>
150-
<artifactId>spring-boot-admin-starter-client</artifactId>
151-
<version>${spring-boot-admin.version}</version>
152-
</dependency>
153-
154131
<dependency>
155132
<!--
156133
Exposes metrics via a Prometheus actuator endpoint.

src/main/java/com/miguno/javadockerbuild/App.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
package com.miguno.javadockerbuild;
22

3-
import de.codecentric.boot.admin.server.config.EnableAdminServer;
43
import org.springframework.boot.SpringApplication;
54
import org.springframework.boot.autoconfigure.SpringBootApplication;
65

76
/** An example application that exposes an HTTP endpoint. */
87
@SpringBootApplication
9-
@EnableAdminServer
108
public class App {
119

1210
public static void main(String[] args) {

0 commit comments

Comments
 (0)