Skip to content

Commit 2d41dd0

Browse files
Change version to 2.1.1
- Reason: version 2.1.0 artifacts are incomplete on the nexus repository Change-Id: I55c93ebf1d341fd0aa01d0aea1d277f23cabc84c
1 parent 9450029 commit 2d41dd0

File tree

8 files changed

+10
-12
lines changed

8 files changed

+10
-12
lines changed

README.md

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

2929

30-
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 nexus version (currently `2.0.10`):
30+
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 nexus version (currently `2.1.1`):
3131

3232
```xml
3333
<properties>
34-
<cf-logging-version>2.0.10</cf-logging-version>
34+
<cf-logging-version>2.1.1</cf-logging-version>
3535
</properties>
3636
```
3737

@@ -48,8 +48,6 @@ Say, you want to make use of the *servlet filter* feature, then you need to add
4848

4949
This feature only depends on the servlet API which you have included in your POM anyhow.
5050

51-
For the new dynamic log level feature and the stacktrace feature version 2.1.0 has to be chosen which is not yet available on the nexus repository but can be obtained by building the parent project of this repository.
52-
5351
## Implementation variants and logging configurations
5452

5553
The *core* feature (on which all other features rely) is just using the `org.slf4j` API, but to actually get logs written, you need to pick an implementation feature. As stated above, we have two implementations

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<parent>
3333
<groupId>com.sap.hcp.cf.logging</groupId>
3434
<artifactId>cf-java-logging-support-parent</artifactId>
35-
<version>2.1.0</version>
35+
<version>2.1.1</version>
3636
<relativePath>../pom.xml</relativePath>
3737
</parent>
3838
<build>

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.1.0</version>
12+
<version>2.1.1</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.1.0</version>
14+
<version>2.1.1</version>
1515
</parent>
1616

1717
<dependencies>

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.1.0</version>
13+
<version>2.1.1</version>
1414
</parent>
1515

1616
<dependencies>

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.1.0</version>
12+
<version>2.1.1</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.1.0</version>
7+
<version>2.1.1</version>
88
<packaging>pom</packaging>
99

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

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.1.1</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.1.1</cf-logging.version>
2222
</properties>
2323
<dependencies>
2424
<dependency>

0 commit comments

Comments
 (0)