File tree 5 files changed +48
-0
lines changed
spring-boot-actuator-docs
5 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 30
30
<artifactId >spring-boot-actuator</artifactId >
31
31
<scope >provided</scope >
32
32
</dependency >
33
+ <dependency >
34
+ <groupId >com.h2database</groupId >
35
+ <artifactId >h2</artifactId >
36
+ </dependency >
33
37
<dependency >
34
38
<groupId >junit</groupId >
35
39
<artifactId >junit</artifactId >
40
44
<artifactId >groovy-templates</artifactId >
41
45
<scope >provided</scope >
42
46
</dependency >
47
+ <dependency >
48
+ <groupId >org.flywaydb</groupId >
49
+ <artifactId >flyway-core</artifactId >
50
+ <scope >provided</scope >
51
+ </dependency >
52
+ <dependency >
53
+ <groupId >org.liquibase</groupId >
54
+ <artifactId >liquibase-core</artifactId >
55
+ <scope >provided</scope >
56
+ </dependency >
57
+ <dependency >
58
+ <groupId >org.springframework</groupId >
59
+ <artifactId >spring-jdbc</artifactId >
60
+ <scope >provided</scope >
61
+ </dependency >
43
62
<dependency >
44
63
<groupId >org.springframework</groupId >
45
64
<artifactId >spring-test</artifactId >
Original file line number Diff line number Diff line change
1
+ === /flyway
2
+ This endpoint provides information about database migrations that have been performed
3
+ by Flyway.
4
+
5
+ Example curl request:
6
+ include::{generated}/flyway/curl-request.adoc[]
7
+
8
+ Example HTTP request:
9
+ include::{generated}/flyway/http-request.adoc[]
10
+
11
+ Example HTTP response:
12
+ include::{generated}/flyway/http-response.adoc[]
Original file line number Diff line number Diff line change
1
+ === /liquibase
2
+ This endpoint provides information about database migrations that have been performed
3
+ by Liquibase.
4
+
5
+ Example curl request:
6
+ include::{generated}/liquibase/curl-request.adoc[]
7
+
8
+ Example HTTP request:
9
+ include::{generated}/liquibase/http-request.adoc[]
10
+
11
+ Example HTTP response:
12
+ include::{generated}/liquibase/http-response.adoc[]
Original file line number Diff line number Diff line change
1
+ databaseChangeLog :
2
+ - changeSet :
3
+ id : 1
4
+ author : awilkinson
5
+ changes :
You can’t perform that action at this time.
0 commit comments