Commit 05a2b535 authored by Andy Wilkinson's avatar Andy Wilkinson

Add information about /liquibase and /flyway to Actuator's docs

Closes gh-3438
parent 0061e84a
...@@ -30,6 +30,10 @@ ...@@ -30,6 +30,10 @@
<artifactId>spring-boot-actuator</artifactId> <artifactId>spring-boot-actuator</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
...@@ -40,6 +44,21 @@ ...@@ -40,6 +44,21 @@
<artifactId>groovy-templates</artifactId> <artifactId>groovy-templates</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<scope>provided</scope>
</dependency>
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId> <artifactId>spring-test</artifactId>
......
=== /flyway
This endpoint provides information about database migrations that have been performed
by Flyway.
Example curl request:
include::{generated}/flyway/curl-request.adoc[]
Example HTTP request:
include::{generated}/flyway/http-request.adoc[]
Example HTTP response:
include::{generated}/flyway/http-response.adoc[]
=== /liquibase
This endpoint provides information about database migrations that have been performed
by Liquibase.
Example curl request:
include::{generated}/liquibase/curl-request.adoc[]
Example HTTP request:
include::{generated}/liquibase/http-request.adoc[]
Example HTTP response:
include::{generated}/liquibase/http-response.adoc[]
databaseChangeLog:
- changeSet:
id: 1
author: awilkinson
changes:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment