Skip to content

Commit 26caebd

Browse files
authored
Merge pull request #36 from nyavuzcan/log4j-exploit_fix
log4j-exploit fix: excluded slf4j logging
2 parents d3733f9 + 66e4ce7 commit 26caebd

7 files changed

Lines changed: 26 additions & 10 deletions

File tree

Jdempotent-core/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>com.trendyol</groupId>
88
<artifactId>Jdempotent-core</artifactId>
9-
<version>1.0.10</version>
9+
<version>1.0.11</version>
1010
<name>Jdempotent-core</name>
1111
<packaging>jar</packaging>
1212
<url>https://github.com/Trendyol/Jdempotent/tree/master/Jdempotent-core</url>
@@ -97,6 +97,10 @@
9797
<groupId>org.junit.vintage</groupId>
9898
<artifactId>junit-vintage-engine</artifactId>
9999
</exclusion>
100+
<exclusion>
101+
<groupId>org.springframework.boot</groupId>
102+
<artifactId>spring-boot-starter-logging</artifactId>
103+
</exclusion>
100104
</exclusions>
101105
</dependency>
102106
<dependency>

Jdempotent-spring-boot-couchbase-starter/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.trendyol</groupId>
77
<artifactId>Jdempotent-spring-boot-couchbase-starter</artifactId>
8-
<version>1.0.10</version>
8+
<version>1.0.11</version>
99
<name>Jdempotent-spring-boot-couchbase-starter</name>
1010
<packaging>jar</packaging>
1111
<url>https://github.com/Trendyol/Jdempotent/tree/master/Jdempotent-spring-boot-couchbase-starter</url>
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>com.trendyol</groupId>
5656
<artifactId>Jdempotent-core</artifactId>
57-
<version>1.0.10</version>
57+
<version>1.0.11</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>org.aspectj</groupId>
@@ -66,6 +66,12 @@
6666
<groupId>org.springframework.boot</groupId>
6767
<artifactId>spring-boot-starter</artifactId>
6868
<version>2.2.5.RELEASE</version>
69+
<exclusions>
70+
<exclusion>
71+
<groupId>org.springframework.boot</groupId>
72+
<artifactId>spring-boot-starter-logging</artifactId>
73+
</exclusion>
74+
</exclusions>
6975
</dependency>
7076
<dependency>
7177
<groupId>com.fasterxml.jackson.core</groupId>

Jdempotent-spring-boot-redis-starter/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>com.trendyol</groupId>
88
<artifactId>Jdempotent-spring-boot-redis-starter</artifactId>
9-
<version>1.0.10</version>
9+
<version>1.0.11</version>
1010
<name>Jdempotent-spring-boot-redis-starter</name>
1111
<packaging>jar</packaging>
1212
<url>https://github.com/Trendyol/Jdempotent/tree/master/Jdempotent-spring-boot-redis-starter</url>
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>com.trendyol</groupId>
5656
<artifactId>Jdempotent-core</artifactId>
57-
<version>1.0.10</version>
57+
<version>1.0.11</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>redis.clients</groupId>
@@ -65,6 +65,12 @@
6565
<groupId>org.springframework.boot</groupId>
6666
<artifactId>spring-boot-starter-data-redis</artifactId>
6767
<version>2.2.5.RELEASE</version>
68+
<exclusions>
69+
<exclusion>
70+
<groupId>org.springframework.boot</groupId>
71+
<artifactId>spring-boot-starter-logging</artifactId>
72+
</exclusion>
73+
</exclusions>
6874
</dependency>
6975
<dependency>
7076
<groupId>org.aspectj</groupId>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ For Redis:
2020
<dependency>
2121
<groupId>com.trendyol</groupId>
2222
<artifactId>Jdempotent-spring-boot-redis-starter</artifactId>
23-
<version>1.0.10</version>
23+
<version>1.0.11</version>
2424
</dependency>
2525
```
2626
For Couchbase:
@@ -29,7 +29,7 @@ For Couchbase:
2929
<dependency>
3030
<groupId>com.trendyol</groupId>
3131
<artifactId>Jdempotent-spring-boot-couchbase-starter</artifactId>
32-
<version>1.0.10</version>
32+
<version>1.0.11</version>
3333
</dependency>
3434
```
3535

examples/jdempotent-couchbase-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<dependency>
6060
<groupId>com.trendyol</groupId>
6161
<artifactId>Jdempotent-spring-boot-couchbase-starter</artifactId>
62-
<version>1.0.10</version>
62+
<version>1.0.11</version>
6363
</dependency>
6464
</dependencies>
6565

examples/jdempotent-redis-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<dependency>
6060
<groupId>com.trendyol</groupId>
6161
<artifactId>Jdempotent-spring-boot-redis-starter</artifactId>
62-
<version>1.0.10</version>
62+
<version>1.0.11</version>
6363
</dependency>
6464
</dependencies>
6565

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.trendyol</groupId>
55
<artifactId>jdempotent</artifactId>
66
<packaging>pom</packaging>
7-
<version>1.0.10</version>
7+
<version>1.0.11</version>
88
<name>Jdempotent</name>
99
<url>https://github.com/Trendyol/Jdempotent</url>
1010
<description>Jdempotent</description>

0 commit comments

Comments
 (0)