File tree 2 files changed +0
-25
lines changed
src/main/java/com/miguno/javadockerbuild
2 files changed +0
-25
lines changed Original file line number Diff line number Diff line change 128
128
<version >${therapi.version} </version >
129
129
</dependency >
130
130
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
-
154
131
<dependency >
155
132
<!--
156
133
Exposes metrics via a Prometheus actuator endpoint.
Original file line number Diff line number Diff line change 1
1
package com .miguno .javadockerbuild ;
2
2
3
- import de .codecentric .boot .admin .server .config .EnableAdminServer ;
4
3
import org .springframework .boot .SpringApplication ;
5
4
import org .springframework .boot .autoconfigure .SpringBootApplication ;
6
5
7
6
/** An example application that exposes an HTTP endpoint. */
8
7
@ SpringBootApplication
9
- @ EnableAdminServer
10
8
public class App {
11
9
12
10
public static void main (String [] args ) {
You can’t perform that action at this time.
0 commit comments