Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
05a2b535
Commit
05a2b535
authored
Oct 26, 2015
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add information about /liquibase and /flyway to Actuator's docs
Closes gh-3438
parent
0061e84a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
48 additions
and
0 deletions
+48
-0
pom.xml
spring-boot-actuator-docs/pom.xml
+19
-0
flyway.adoc
spring-boot-actuator-docs/src/main/asciidoc/flyway.adoc
+12
-0
liquibase.adoc
spring-boot-actuator-docs/src/main/asciidoc/liquibase.adoc
+12
-0
db.changelog-master.yaml
...c/restdoc/resources/db/changelog/db.changelog-master.yaml
+5
-0
V1__initialize.sql
...ocs/src/restdoc/resources/db/migration/V1__initialize.sql
+0
-0
No files found.
spring-boot-actuator-docs/pom.xml
View file @
05a2b535
...
@@ -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>
...
...
spring-boot-actuator-docs/src/main/asciidoc/flyway.adoc
0 → 100644
View file @
05a2b535
=== /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[]
spring-boot-actuator-docs/src/main/asciidoc/liquibase.adoc
0 → 100644
View file @
05a2b535
=== /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[]
spring-boot-actuator-docs/src/restdoc/resources/db/changelog/db.changelog-master.yaml
0 → 100644
View file @
05a2b535
databaseChangeLog
:
-
changeSet
:
id
:
1
author
:
awilkinson
changes
:
spring-boot-actuator-docs/src/restdoc/resources/db/migration/V1__initialize.sql
0 → 100644
View file @
05a2b535
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment