diff --git a/.travis.yml b/.travis.yml index dff5f3a5..0210d7e7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1 +1,2 @@ language: java +before_install: echo "MAVEN_OPTS=-e" > ~/.mavenrc diff --git a/README.md b/README.md index 8a1a7d30..eedf65d4 100644 --- a/README.md +++ b/README.md @@ -307,9 +307,11 @@ description about how to apply this feature can be found Stacktraces can be logged within one log message. Further details can be found [here](https://github.com/SAP/cf-java-logging-support/wiki/Logging-Stack-Traces). -## Sample Application +## Sample Applications -In order to illustrate how the different features are used, this repository includes a simple application in the [./sample folder](./sample). +In order to illustrate how the different features are used, this repository includes + * a simple java application in the [./sample](./sample) folder. + * a simple Spring boot application in the [./sample-spring-boot](./sample-spring-boot) folder. ## Documentation diff --git a/sample-spring-boot/README.md b/sample-spring-boot/README.md index b0a53f84..c1f719e8 100644 --- a/sample-spring-boot/README.md +++ b/sample-spring-boot/README.md @@ -8,8 +8,9 @@ See section [Features](#features) for details. ## Getting Started This sample application is contained in the Maven module sample-spring-boot. -It can be built with a simple `mvn install`. A minimal CF application manifest is provided in [manifest.yml.](manifest.yml) +To avoid naming conflicts, the name of the app should be changed in the manifest before building it. +The app can be built with a simple `mvn install` (requires Apache Maven 3.6.3). This allows to deploy the newly built app with `cf push`, provided a login to a CF instance. ### Changing the Credentials