Skip to content

Commit 7a6a6d0

Browse files
therepanicfacebook-github-bot
authored andcommitted
Update dependencies to latest versions (#470)
Summary: I think we should update some of the dependencies (by some I mean the ones that the tests will run properly after changing) for better security, compatibility with new features and I think overall performance Pull Request resolved: #470 Reviewed By: yoongyj Differential Revision: D67467576 Pulled By: stcheng fbshipit-source-id: 8e59319dc119abf785ae61f2072125c5cd6dc80f
1 parent 49398af commit 7a6a6d0

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

pom.xml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
<execution>
9696
<phase>package</phase>
9797
<goals>
98-
<goal>shade</goal>
98+
<goal>shade</goal>
9999
</goals>
100100
<configuration>
101101
<shadedArtifactAttached>true</shadedArtifactAttached>
@@ -106,50 +106,50 @@
106106
</plugin>
107107
<!-- compile kotlin in test file-->
108108
<plugin>
109-
<artifactId>kotlin-maven-plugin</artifactId>
110-
<groupId>org.jetbrains.kotlin</groupId>
111-
<version>${kotlin.version}</version>
112-
<executions>
113-
<execution>
114-
<id>test-compile</id>
115-
<goals>
116-
<goal>test-compile</goal>
117-
</goals>
118-
<configuration>
119-
<sourceDirs>
120-
<sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
121-
</sourceDirs>
122-
</configuration>
123-
</execution>
124-
</executions>
109+
<artifactId>kotlin-maven-plugin</artifactId>
110+
<groupId>org.jetbrains.kotlin</groupId>
111+
<version>${kotlin.version}</version>
112+
<executions>
113+
<execution>
114+
<id>test-compile</id>
115+
<goals>
116+
<goal>test-compile</goal>
117+
</goals>
118+
<configuration>
119+
<sourceDirs>
120+
<sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
121+
</sourceDirs>
122+
</configuration>
123+
</execution>
124+
</executions>
125125
</plugin>
126126
</plugins>
127127
</build>
128128
<dependencies>
129129
<dependency>
130130
<groupId>com.google.code.gson</groupId>
131131
<artifactId>gson</artifactId>
132-
<version>2.8.9</version>
132+
<version>2.11.0</version>
133133
</dependency>
134134
<dependency>
135135
<groupId>com.squareup.okhttp3</groupId>
136136
<artifactId>okhttp</artifactId>
137-
<version>3.9.1</version>
137+
<version>4.12.0</version>
138138
</dependency>
139139
<dependency>
140140
<groupId>com.google.guava</groupId>
141141
<artifactId>guava</artifactId>
142-
<version>33.0.0-jre</version>
142+
<version>33.3.1-jre</version>
143143
</dependency>
144144
<dependency>
145145
<groupId>com.squareup.okio</groupId>
146146
<artifactId>okio</artifactId>
147-
<version>3.4.0</version>
147+
<version>3.9.1</version>
148148
</dependency>
149149
<dependency>
150150
<groupId>junit</groupId>
151151
<artifactId>junit</artifactId>
152-
<version>4.13.1</version>
152+
<version>4.13.2</version>
153153
<scope>test</scope>
154154
</dependency>
155155
<dependency>
@@ -159,10 +159,10 @@
159159
<scope>test</scope>
160160
</dependency>
161161
<dependency>
162-
<groupId>org.jetbrains.kotlin</groupId>
163-
<artifactId>kotlin-stdlib</artifactId>
164-
<version>${kotlin.version}</version>
165-
<scope>test</scope>
162+
<groupId>org.jetbrains.kotlin</groupId>
163+
<artifactId>kotlin-stdlib</artifactId>
164+
<version>${kotlin.version}</version>
165+
<scope>test</scope>
166166
</dependency>
167167
<dependency>
168168
<groupId>io.mockk</groupId>

0 commit comments

Comments
 (0)