From e331da87fa5e1ffe84acf8490a9d8deaefd64b80 Mon Sep 17 00:00:00 2001 From: Robert McNees Date: Wed, 22 Sep 2021 07:38:59 -0400 Subject: [PATCH 1/2] Removed .travis and scripts reference from documentation --- docs/src/main/asciidoc/building-base.adoc | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/docs/src/main/asciidoc/building-base.adoc b/docs/src/main/asciidoc/building-base.adoc index b09b78b3..32e01ab2 100644 --- a/docs/src/main/asciidoc/building-base.adoc +++ b/docs/src/main/asciidoc/building-base.adoc @@ -22,23 +22,11 @@ the `.mvn` configuration, so if you find you have to do it to make a build succeed, please raise a ticket to get the settings added to source control. -For hints on how to build the project look in `.travis.yml` if there -is one. There should be a "script" and maybe "install" command. Also -look at the "services" section to see if any services need to be -running locally (e.g. mongo or rabbit). Ignore the git-related bits -that you might find in "before_install" since they're related to setting git -credentials and you already have those. +The projects that require middleware (i.e. Redis) for testing generally +require that a local instance of Docker is installed and running. +https://www.docker.com/products/docker-desktop[Docker Desktop] is a common +tool to satisfy this requirement. -The projects that require middleware generally include a -`docker-compose.yml`, so consider using -https://docs.docker.com/compose/[Docker Compose] to run the middeware servers -in Docker containers. See the README in the -https://github.com/spring-cloud-samples/scripts[scripts demo -repository] for specific instructions about the common cases of mongo, -rabbit and redis. - -NOTE: If all else fails, build with the command from `.travis.yml` (usually -`./mvnw install`). === Documentation From bfc8b98a2195fee618829eda147075e9299e43b2 Mon Sep 17 00:00:00 2001 From: Robert McNees <86265089+robertmcnees@users.noreply.github.com> Date: Mon, 27 Sep 2021 11:06:00 -0400 Subject: [PATCH 2/2] Update docs/src/main/asciidoc/building-base.adoc Co-authored-by: Jonatan Ivanov --- docs/src/main/asciidoc/building-base.adoc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/src/main/asciidoc/building-base.adoc b/docs/src/main/asciidoc/building-base.adoc index 32e01ab2..2aa23477 100644 --- a/docs/src/main/asciidoc/building-base.adoc +++ b/docs/src/main/asciidoc/building-base.adoc @@ -23,9 +23,7 @@ build succeed, please raise a ticket to get the settings added to source control. The projects that require middleware (i.e. Redis) for testing generally -require that a local instance of Docker is installed and running. -https://www.docker.com/products/docker-desktop[Docker Desktop] is a common -tool to satisfy this requirement. +require that a local instance of [Docker](https://www.docker.com/get-started) is installed and running. === Documentation