In order to get a deployable version of the Spring Music application, we will need to download it from a code repository online and build it. We do this, as follows:
- Clone the Git repository that contains the Spring Music application using the following command:
$ git clone https://github.com/cloudfoundry-samples/spring-music
- Navigate to the spring-music directory:
$ cd ./spring-music
- Assemble the Spring Music app using a Windows PowerShell or a Unix Terminal using the following,
On Unix-like platforms such as Linux and macOS X that do not yet have Gradle installed, use:
$ ./gradlew clean assemble
Unix-like platforms such as Linux and macOS X that do have Gradle installed, use:
$ gradle clean assemble ...