Skip to content

Commit 8c83164

Browse files
authored
Fixed vulnerability introduced by jackson libs (#232)
* Fixed vulnerability introduced by jackson libs * Release 2.0.1 sign off
1 parent 4f047ac commit 8c83164

2 files changed

Lines changed: 21 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A Java SDK for Switcher API
1212
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=switcherapi_switcher-client&metric=alert_status)](https://sonarcloud.io/dashboard?id=switcherapi_switcher-client)
1313
[![Known Vulnerabilities](https://snyk.io/test/github/switcherapi/switcher-client/badge.svg?targetFile=pom.xml)](https://snyk.io/test/github/switcherapi/switcher-client?targetFile=pom.xml)
1414
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
15-
[![Maven Central](https://img.shields.io/maven-central/v/com.github.switcherapi/switcher-client.svg?label=Maven%20Central)](https://central.sonatype.com/artifact/com.github.switcherapi/switcher-client)
15+
[![Maven Central](https://img.shields.io/maven-central/v/com.github.switcherapi/switcher-client.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.github.switcherapi%22%20AND%20a:%22switcher-client%22)
1616
[![Slack: Switcher-HQ](https://img.shields.io/badge/slack-@switcher/hq-blue.svg?logo=slack)](https://switcher-hq.slack.com/)
1717

1818
</div>
@@ -33,7 +33,7 @@ https://github.com/switcherapi/switcher-api
3333

3434
# Usage
3535

36-
## Install
36+
## Install
3737
- Using the source code `mvn clean install`
3838
- Adding as a dependency - Maven
3939
```xml

pom.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<groupId>com.github.switcherapi</groupId>
99
<artifactId>switcher-client</artifactId>
1010
<packaging>jar</packaging>
11-
<version>2.0.0</version>
11+
<version>2.0.1</version>
1212

1313
<name>Switcher Client</name>
1414
<description>Switcher Client SDK for working with Switcher API</description>
@@ -166,6 +166,24 @@
166166
<artifactId>junit</artifactId>
167167
<version>4.13.1</version>
168168
</dependency>
169+
170+
<dependency>
171+
<groupId>com.fasterxml.jackson.core</groupId>
172+
<artifactId>jackson-annotations</artifactId>
173+
<version>2.14.2</version>
174+
</dependency>
175+
176+
<dependency>
177+
<groupId>com.fasterxml.jackson.core</groupId>
178+
<artifactId>jackson-databind</artifactId>
179+
<version>2.14.2</version>
180+
</dependency>
181+
182+
<dependency>
183+
<groupId>com.fasterxml.jackson.module</groupId>
184+
<artifactId>jackson-module-jakarta-xmlbind-annotations</artifactId>
185+
<version>2.14.2</version>
186+
</dependency>
169187
</dependencies>
170188
</dependencyManagement>
171189

0 commit comments

Comments
 (0)