Skip to content

Commit 4a3dae4

Browse files
authored
Merge pull request #115 from cloudsufi/cherry-pick/PLUGIN-1904
[🍒][PLUGIN-1904] Fix Vulnerability issues due to org.json
2 parents 0d23f18 + 5d8e492 commit 4a3dae4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
<junit.version>4.12</junit.version>
6969
<slf4j.version>1.7.5</slf4j.version>
7070
<powermock.version>2.0.2</powermock.version>
71+
<json.version>20231013</json.version>
7172
<testSourceLocation>${project.basedir}/src/test/java/</testSourceLocation>
7273
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7374
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -218,6 +219,12 @@
218219
<dependency>
219220
<groupId>org.apache.oltu.oauth2</groupId>
220221
<artifactId>org.apache.oltu.oauth2.client</artifactId>
222+
<exclusions>
223+
<exclusion>
224+
<groupId>org.json</groupId>
225+
<artifactId>json</artifactId>
226+
</exclusion>
227+
</exclusions>
221228
<version>1.0.2</version>
222229
</dependency>
223230
<dependency>
@@ -248,6 +255,11 @@
248255
<artifactId>logback-classic</artifactId>
249256
<version>1.2.8</version>
250257
</dependency>
258+
<dependency>
259+
<groupId>org.json</groupId>
260+
<artifactId>json</artifactId>
261+
<version>${json.version}</version>
262+
</dependency>
251263
</dependencies>
252264

253265
<build>

0 commit comments

Comments
 (0)