Skip to content

Commit 01f66bd

Browse files
authored
Fix vulnerability of transitive dependency brought by sslr-toolkit (#157)
* Fix vulnerability of transitive dependency brought by sslr-toolkit in sslr-flex-toolkit module * Update required file size * Update commons-io to 2.11.0
1 parent c353b4a commit 01f66bd

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,12 @@
162162
<artifactId>jsr305</artifactId>
163163
<version>3.0.2</version>
164164
</dependency>
165+
<!-- Fix vulnerability of transitive dependency brought by sslr-toolkit in sslr-flex-toolkit module. -->
166+
<dependency>
167+
<groupId>commons-io</groupId>
168+
<artifactId>commons-io</artifactId>
169+
<version>2.11.0</version>
170+
</dependency>
165171
<dependency>
166172
<groupId>junit</groupId>
167173
<artifactId>junit</artifactId>

sslr-flex-toolkit/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@
9292
<configuration>
9393
<rules>
9494
<requireFilesSize>
95-
<maxsize>2300000</maxsize>
96-
<minsize>2200000</minsize>
95+
<maxsize>2400000</maxsize>
96+
<minsize>2300000</minsize>
9797
<files>
9898
<file>${project.build.directory}/${project.build.finalName}.jar</file>
9999
</files>

0 commit comments

Comments
 (0)