Skip to content

Commit 4f186a2

Browse files
authored
fix: bump kotlin-stdlib version to avoid vulnerability (#176)
1 parent e3b495d commit 4f186a2

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

pom.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131

3232
<!-- versions of transitive dependencies we need to override to avoid vulnerability alerts -->
3333
<junit-version>4.13.2</junit-version>
34+
<kotlin-version>1.6.21</kotlin-version>
3435

3536
<!-- This property should be empty by default. -->
3637
<surefireJvmArgs></surefireJvmArgs>
@@ -151,7 +152,17 @@
151152
<version>${powermock-version}</version>
152153
<scope>test</scope>
153154
</dependency>
154-
</dependencies>
155+
<dependency>
156+
<groupId>org.jetbrains.kotlin</groupId>
157+
<artifactId>kotlin-stdlib-jdk8</artifactId>
158+
<version>${kotlin-version}</version>
159+
</dependency>
160+
<dependency>
161+
<groupId>org.jetbrains.kotlin</groupId>
162+
<artifactId>kotlin-stdlib</artifactId>
163+
<version>${kotlin-version}</version>
164+
</dependency>
165+
</dependencies>
155166

156167
<build>
157168
<plugins>

0 commit comments

Comments
 (0)