1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-13 01:14:14 +02:00

Add OkHttp dependency in build.gradle.kts

A new implementation line was added to the build.gradle.kts file for OkHttp library. This change is needed in order to extend the project's capabilities for HTTP network requests for ones with encryption/compression.
This commit is contained in:
Undid-Iridium
2023-12-09 04:54:06 -05:00
committed by soloturn
parent 9e6bb0c8c4
commit 9c18f452cd

View File

@@ -31,6 +31,7 @@ dependencies {
implementation("org.apache.httpcomponents:httpmime:4.5.14")
implementation("org.apache.logging.log4j:log4j-api:2.20.0")
implementation("org.apache.logging.log4j:log4j-core:2.20.0")
implementation("com.squareup.okhttp3:okhttp:4.12.0")
implementation("org.graalvm.js:js:22.3.2")
testImplementation(enforcedPlatform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
@@ -68,7 +69,7 @@ tasks.withType<Jar> {
attributes["Implementation-Version"] = archiveVersion
attributes["Multi-Release"] = "true"
}
// To add all of the dependencies otherwise a "NoClassDefFoundError" error
from(sourceSets.main.get().output)