Skip to content

Commit

Permalink
Merge pull request #49 from sipgate/renovate/okhttp-monorepo
Browse files Browse the repository at this point in the history
fix(deps): update dependency com.squareup.okhttp3:mockwebserver3-junit5 to v5.0.0-alpha.14
  • Loading branch information
janseeger authored Apr 23, 2024
2 parents 572c658 + a889018 commit 5a56069
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import mockwebserver3.MockResponse
import mockwebserver3.MockWebServer
import mockwebserver3.junit5.internal.MockWebServerExtension
import okhttp3.MediaType.Companion.toMediaType
import okhttp3.ExperimentalOkHttpApi
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Test
Expand All @@ -17,7 +18,7 @@ import retrofit2.http.Body
import retrofit2.http.GET
import retrofit2.http.POST

@OptIn(ExperimentalSerializationApi::class)
@OptIn(ExperimentalSerializationApi::class, ExperimentalOkHttpApi::class)
@ExtendWith(MockWebServerExtension::class)
class KotlinSerializationConverterFactoryStringTest {
private lateinit var service: Service
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ mockk-agent = { group = "io.mockk", name = "mockk-agent", version.ref = "mockk"
mockk-jvm = { group = "io.mockk", name = "mockk-jvm", version.ref = "mockk" }

okhttp = { group = "com.squareup.okhttp3", name = "okhttp", version.ref = "okhttp" }
okhttp-mockwebserver = { group = "com.squareup.okhttp3", name = "mockwebserver3-junit5", version.prefer = "5.0.0-alpha.12" }
okhttp-mockwebserver = { group = "com.squareup.okhttp3", name = "mockwebserver3-junit5", version.prefer = "5.0.0-alpha.14" }

retrofit-serialization = { group = "com.jakewharton.retrofit", name = "retrofit2-kotlinx-serialization-converter", version.ref = "retrofit-serialization" }

Expand Down

0 comments on commit 5a56069

Please sign in to comment.