Compiling the spring-cloud-cloudfoundry-2.2.0.RELEASE Source Code
- Download the spring-cloud-cloudfoundry-2.2.0.RELEASE source package.
1 2 3
cd /home git config --global http.sslVerify false git clone https://github.com/spring-cloud/spring-cloud-cloudfoundry.git
- Switch to the target version.
1 2
cd spring-cloud-cloudfoundry git checkout v2.2.1.RELEASE
- Perform the compilation.
1./mvnw clean install -Dgpg.skip=true

If BUILD SUCCESS is displayed, the compilation is successful.
- The compilation may be interrupted due to checkstyle-plugin. Rectify the fault by following instructions in "Failed during checkstyle execution" Displayed When Compiling Spring Boot.
- If the error message "Some problems were encountered while processing the POMs" is displayed, run the following command:
mvn clean install -Dgpg.skip=true
Parent topic: Compiling and Installing Spring Cloud