Skip to content

Commit 6a5209b

Browse files
Merge pull request #1270 from chethann007/latest-vuln-fix
Issue #SBCOSS-422: Vulnerability fixes
2 parents 3531c39 + 12e9d7b commit 6a5209b

File tree

4 files changed

+73
-0
lines changed

4 files changed

+73
-0
lines changed

controller/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,17 @@
103103
<groupId>org.scala-lang</groupId>
104104
<artifactId>scala-library</artifactId>
105105
</exclusion>
106+
<exclusion>
107+
<groupId>io.netty</groupId>
108+
<artifactId>netty-codec-http</artifactId>
109+
</exclusion>
106110
</exclusions>
107111
</dependency>
112+
<dependency>
113+
<groupId>io.netty</groupId>
114+
<artifactId>netty-codec-http</artifactId>
115+
<version>4.1.44.Final</version>
116+
</dependency>
108117
<dependency>
109118
<groupId>com.typesafe</groupId>
110119
<artifactId>config</artifactId>

core/actor-core/pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,17 @@
4747
<groupId>com.typesafe.akka</groupId>
4848
<artifactId>akka-remote_${scala.major.version}</artifactId>
4949
<version>${typesafe.akka.version}</version>
50+
<exclusions>
51+
<exclusion>
52+
<groupId>io.netty</groupId>
53+
<artifactId>netty</artifactId>
54+
</exclusion>
55+
</exclusions>
56+
</dependency>
57+
<dependency>
58+
<groupId>io.netty</groupId>
59+
<artifactId>netty-all</artifactId>
60+
<version>4.1.77.Final</version>
5061
</dependency>
5162
<dependency>
5263
<groupId>org.reflections</groupId>

core/platform-common/pom.xml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,17 @@
8585
<groupId>org.apache.velocity</groupId>
8686
<artifactId>velocity-tools</artifactId>
8787
<version>2.0</version>
88+
<exclusions>
89+
<exclusion>
90+
<groupId>commons-collections</groupId>
91+
<artifactId>commons-collections</artifactId>
92+
</exclusion>
93+
</exclusions>
94+
</dependency>
95+
<dependency>
96+
<groupId>commons-collections</groupId>
97+
<artifactId>commons-collections</artifactId>
98+
<version>3.2.2</version>
8899
</dependency>
89100
<dependency>
90101
<groupId>junit</groupId>
@@ -146,8 +157,30 @@
146157
<groupId>org.slf4j</groupId>
147158
<artifactId>slf4j-reload4j</artifactId>
148159
</exclusion>
160+
<exclusion>
161+
<groupId>org.apache.avro</groupId>
162+
<artifactId>avro</artifactId>
163+
</exclusion>
164+
<exclusion>
165+
<groupId>org.apache.commons</groupId>
166+
<artifactId>commons-collections4</artifactId>
167+
</exclusion>
168+
<exclusion>
169+
<groupId>org.apache.zookeeper</groupId>
170+
<artifactId>zookeeper</artifactId>
171+
</exclusion>
149172
</exclusions>
150173
</dependency>
174+
<dependency>
175+
<groupId>org.apache.avro</groupId>
176+
<artifactId>avro</artifactId>
177+
<version>1.11.4</version>
178+
</dependency>
179+
<dependency>
180+
<groupId>org.apache.zookeeper</groupId>
181+
<artifactId>zookeeper</artifactId>
182+
<version>3.7.2</version>
183+
</dependency>
151184
<dependency>
152185
<groupId>org.apache.kafka</groupId>
153186
<artifactId>kafka-clients</artifactId>
@@ -186,6 +219,17 @@
186219
<groupId>org.apache.poi</groupId>
187220
<artifactId>poi-ooxml</artifactId>
188221
<version>3.15</version>
222+
<exclusions>
223+
<exclusion>
224+
<groupId>org.apache.xmlbeans</groupId>
225+
<artifactId>xmlbeans</artifactId>
226+
</exclusion>
227+
</exclusions>
228+
</dependency>
229+
<dependency>
230+
<groupId>org.apache.xmlbeans</groupId>
231+
<artifactId>xmlbeans</artifactId>
232+
<version>3.0.0</version>
189233
</dependency>
190234
<dependency>
191235
<groupId>org.jvnet.mock-javamail</groupId>

service/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,17 @@
9999
<groupId>org.apache.lucene</groupId>
100100
<artifactId>lucene-analyzers-common</artifactId>
101101
</exclusion>
102+
<exclusion>
103+
<groupId>org.apache.commons</groupId>
104+
<artifactId>commons-collections4</artifactId>
105+
</exclusion>
102106
</exclusions>
103107
</dependency>
108+
<dependency>
109+
<groupId>org.apache.commons</groupId>
110+
<artifactId>commons-collections4</artifactId>
111+
<version>4.1</version>
112+
</dependency>
104113
<dependency>
105114
<groupId>com.googlecode.libphonenumber</groupId>
106115
<artifactId>libphonenumber</artifactId>

0 commit comments

Comments
 (0)