Skip to content

Commit

Permalink
Optimize dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelpasterz authored and mergify-bot committed Mar 15, 2021
1 parent 3634da0 commit 435ec45
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 18 deletions.
8 changes: 4 additions & 4 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ tasks.test {
tasks.withType<KotlinCompile> { kotlinOptions.jvmTarget = "1.8" }

dependencies {
implementation(kotlin("stdlib", org.jetbrains.kotlin.config.KotlinCompilerVersion.VERSION)) // or "stdlib-jdk8"
// implementation(kotlin("stdlib", org.jetbrains.kotlin.config.KotlinCompilerVersion.VERSION)) // or "stdlib-jdk8"
// Fuel
api(Dependencies.Fuel.CORE)
api(Dependencies.Fuel.KOTLINX_SERIALIZATION)
api(Dependencies.Fuel.COROUTINES)
// api(Dependencies.Fuel.KOTLINX_SERIALIZATION)
// api(Dependencies.Fuel.COROUTINES)
// Archive
api(Dependencies.ARCHIVE_LIB)
api(Dependencies.TUKAANI_XZ)
// api(Dependencies.TUKAANI_XZ)

testImplementation(Dependencies.JUNIT)
testImplementation(Dependencies.MOCKK)
Expand Down
7 changes: 4 additions & 3 deletions flank-scripts/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ shadowJar.apply {
}
}
// <breaking change>.<feature added>.<fix/minor change>
version = "1.9.1"
version = "1.9.2"
group = "com.github.flank"

application {
Expand Down Expand Up @@ -93,14 +93,15 @@ repositories {
}

dependencies {
implementation(kotlin("stdlib", org.jetbrains.kotlin.config.KotlinCompilerVersion.VERSION)) // or "stdlib-jdk8"
// implementation(kotlin("stdlib", org.jetbrains.kotlin.config.KotlinCompilerVersion.VERSION)) // or "stdlib-jdk8"
implementation(Dependencies.KOTLIN_SERIALIZATION)
implementation(project(":common"))
implementation(Dependencies.CLIKT)
implementation(Dependencies.JSOUP)
// implementation(Dependencies.JSOUP)
implementation(Dependencies.JCABI_GITHUB)
implementation(Dependencies.SLF4J_NOP)
implementation(Dependencies.GLASSFISH_JSON)
implementation(Dependencies.Fuel.COROUTINES)

testImplementation(Dependencies.JUNIT)
testImplementation(Dependencies.MOCKK)
Expand Down
18 changes: 7 additions & 11 deletions test_runner/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ dependencies {
implementation(Dependencies.DD_PLIST)
implementation(Dependencies.DEX_TEST_PARSER)

implementation(Dependencies.GSON)
// implementation(Dependencies.GSON)

implementation(Dependencies.JACKSON_DATABIND)
implementation(Dependencies.JACKSON_KOTLIN)
Expand All @@ -205,26 +205,22 @@ dependencies {
implementation(Dependencies.PICOCLI)
annotationProcessor(Dependencies.PICOCLI_CODEGEN)

implementation(Dependencies.WOODSTOX)

// implementation(Dependencies.WOODSTOX)
implementation(Dependencies.KOTLIN_LOGGING)
implementation(Dependencies.COMMON_TEXT)
implementation(Dependencies.JANSI)

// NOTE: iOS support isn't in the public artifact. Use testing jar generated from the private gcloud CLI json
// https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.google.apis%22%20AND%20a%3A%22google-api-services-testing%22
// compile("com.google.apis:google-api-services-testing:v1-rev30-1.23.0")
implementation(project(":firebase_apis:test_api"))

implementation(Dependencies.JSOUP)
implementation(Dependencies.OKHTTP)

// testImplementation(Dependencies.JSOUP)
// testImplementation(Dependencies.OKHTTP)
testImplementation(Dependencies.JUNIT)
implementation(Dependencies.SYSTEM_RULES)
testImplementation(Dependencies.SYSTEM_RULES)
testImplementation(Dependencies.TRUTH)
testImplementation(Dependencies.MOCKK)

implementation(Dependencies.COMMON_TEXT)

implementation(Dependencies.JANSI)
}

buildscript {
Expand Down

0 comments on commit 435ec45

Please sign in to comment.