Skip to content

Commit abe194a

Browse files
committed
Bump version to 2.0.11
Includes the pull request from torax242. Makes random sleep in PickGreeting configurable.
1 parent c31d1f0 commit abe194a

File tree

11 files changed

+27
-21
lines changed

11 files changed

+27
-21
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ All in all, you should do the following:
2626
* pick your favorite logging implementation, and
2727
* adjust your logging configuration accordingly.
2828

29-
Say, you want to make use of the *servlet filter* feature, then you need to add the following dependency to your POM with property `cf-logging-version` referring to the latest version (currently `2.0.10`):
29+
Say, you want to make use of the *servlet filter* feature, then you need to add the following dependency to your POM with property `cf-logging-version` referring to the latest version (currently `2.0.11`):
3030

3131
```xml
3232
<properties>
33-
<cf-logging-version>2.0.10</cf-logging-version>
33+
<cf-logging-version>2.0.11</cf-logging-version>
3434
</properties>
3535
```
3636

cf-java-logging-support-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>com.sap.hcp.cf.logging</groupId>
2626
<artifactId>cf-java-logging-support-parent</artifactId>
27-
<version>2.0.10</version>
27+
<version>2.0.11</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030
<profiles>

cf-java-logging-support-jersey/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<relativePath>../pom.xml</relativePath>
1010
<groupId>com.sap.hcp.cf.logging</groupId>
1111
<artifactId>cf-java-logging-support-parent</artifactId>
12-
<version>2.0.10</version>
12+
<version>2.0.11</version>
1313
</parent>
1414

1515
<name>cf-java-logging-support-jersey</name>

cf-java-logging-support-log4j2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<relativePath>../pom.xml</relativePath>
1212
<groupId>com.sap.hcp.cf.logging</groupId>
1313
<artifactId>cf-java-logging-support-parent</artifactId>
14-
<version>2.0.10</version>
14+
<version>2.0.11</version>
1515
</parent>
1616

1717
<properties>

cf-java-logging-support-logback/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<relativePath>../pom.xml</relativePath>
1111
<groupId>com.sap.hcp.cf.logging</groupId>
1212
<artifactId>cf-java-logging-support-parent</artifactId>
13-
<version>2.0.10</version>
13+
<version>2.0.11</version>
1414
</parent>
1515

1616
<properties>

cf-java-logging-support-servlet/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.sap.hcp.cf.logging</groupId>
1111
<artifactId>cf-java-logging-support-parent</artifactId>
12-
<version>2.0.10</version>
12+
<version>2.0.11</version>
1313
<relativePath>../pom.xml</relativePath>
1414
</parent>
1515

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.sap.hcp.cf.logging</groupId>
66
<artifactId>cf-java-logging-support-parent</artifactId>
7-
<version>2.0.10</version>
7+
<version>2.0.11</version>
88
<packaging>pom</packaging>
99

1010
<name>Cloud Foundry Java logging support components</name>

sample/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ A simple CF sample application that we cloned from [cloudfoundry-sticky-session]
66

77
Currently configured to use `log4j2` as the logging implementation.
88

9+
It uses a environment variable `RANDOM_SLEEP` which, when set to `true` will introduce a artificial delay (up to 1 sec).
10+
911
## Running it locally
1012

1113
You can use the following Maven target to run the application locally

sample/manifest.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ applications:
77
host: logging-sample-app
88
instances: 1
99
memory: 256M
10-
path: target/logging-sample-app-2.0.10.war
10+
path: target/logging-sample-app-2.0.11.war
11+
env:
12+
RANDOM_SLEEP: true

sample/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.sap.hcp.cf.logging</groupId>
88
<artifactId>cf-java-logging-support-parent</artifactId>
9-
<version>2.0.10</version>
9+
<version>2.0.11</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

@@ -18,7 +18,7 @@
1818
<slf4j.version>1.7.12</slf4j.version>
1919
<jersey.version>2.22.2</jersey.version>
2020
<javax.ws.version>2.0.1</javax.ws.version>
21-
<cf-logging.version>2.0.10</cf-logging.version>
21+
<cf-logging.version>2.0.11</cf-logging.version>
2222
</properties>
2323
<dependencies>
2424
<dependency>

0 commit comments

Comments
 (0)