From b5e608f102d67257672df11a71d83443404a8da6 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Wed, 14 May 2014 13:41:55 +0100 Subject: [PATCH] Remove mention of missing starters --- spring-boot-docs/src/main/asciidoc/howto.adoc | 4 ++-- spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc | 6 ------ 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-docs/src/main/asciidoc/howto.adoc index 8387adffc4..0265f0389c 100644 --- a/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -1099,7 +1099,7 @@ independence: usually only one or at most couple of platforms is needed. [[howto-execute-flyway-database-migrations-on-startup]] ==== Execute Flyway database migrations on startup To automatically run Flyway database migrations on startup, add the -`spring-boot-starter-flyway` to your classpath. +`org.flywaydb:flyway-core` to your classpath. The migrations are scripts in the form `V__.sql` (with `` an underscore-separated version, e.g. "1" or "2_1"). By @@ -1116,7 +1116,7 @@ you can see how to set things up. [[howto-execute-liquibase-database-migrations-on-startup]] ==== Execute Liquibase database migrations on startup To automatically run Liquibase database migrations on startup, add the -`spring-boot-starter-liquibase` to your classpath. +`org.liquibase:liquibase-core` to your classpath. The master change log is by default read from `db/changelog/db.changelog-master.yaml` but can be set using `liquibase.change-log`. See diff --git a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc index fad6ccd9dd..ef4efd4ff0 100644 --- a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc +++ b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc @@ -242,12 +242,6 @@ and Hibernate. |`spring-boot-starter-jdbc` |JDBC Database support. -|`spring-boot-starter-flyway` -|Support for Flyway database migrations. - -|`spring-boot-starter-liquibase` -|Support for Liquibase database migrations. - |`spring-boot-starter-mobile` |Support for `spring-mobile`