Skip to content

Commit

Permalink
chore(deps): Updated Kotlin from v1.7.0 to v1.9.10, Gradle from v6.7.…
Browse files Browse the repository at this point in the history
…1 to v8.4 and upgraded linter

setting gradle jvm toolchain version from 8 to 17
  • Loading branch information
daniel-lopes-optimizely committed Oct 23, 2023
1 parent fb72043 commit 71808f6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ group = "com.looker.sdk"
defaultTasks = mutableListOf("jar")

val kotlinVersion = providers.gradleProperty("kotlinVersion").get()
val ktorVersion = providers.gradleProperty("ktorVersion").get()
val googleHttpVersion = providers.gradleProperty("googleHttpVersion").get()

plugins {
kotlin("jvm")
Expand Down Expand Up @@ -35,10 +35,12 @@ dependencies {
implementation("io.github.cdimascio:dotenv-kotlin:6.2.2")
implementation("org.ini4j:ini4j:0.5.4")

implementation("io.ktor:ktor-client:$ktorVersion")
implementation("io.ktor:ktor-client-okhttp:$ktorVersion")
implementation("io.ktor:ktor-client-json:$ktorVersion")
implementation("io.ktor:ktor-client-gson:$ktorVersion")
implementation("commons-configuration:commons-configuration:1.10")

implementation(platform("com.google.http-client:google-http-client-bom:$googleHttpVersion"))
implementation("com.google.http-client:google-http-client")
implementation("com.google.http-client:google-http-client-apache-v2")
implementation("com.google.http-client:google-http-client-gson")

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
implementation("com.google.code.gson:gson:2.8.5")
Expand Down
2 changes: 1 addition & 1 deletion kotlin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
kotlinVersion=1.7.10
kotlinVersion=1.9.10
googleHttpVersion=1.43.3
2 changes: 1 addition & 1 deletion kotlin/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 71808f6

Please sign in to comment.