Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
chore: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
auguwu committed Jun 13, 2022
1 parent c8efcf3 commit f6c9654
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ repositories {
}

dependencies {
implementation("com.diffplug.spotless:spotless-plugin-gradle:6.6.1")
implementation("com.diffplug.spotless:spotless-plugin-gradle:6.7.2")
implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.6.21")
implementation(kotlin("gradle-plugin", version = "1.6.21"))
implementation(kotlin("serialization", version = "1.6.21"))
implementation("io.kotest:kotest-gradle-plugin:0.3.9")
implementation("dev.floofy.commons:gradle:2.1.0.1")
implementation("dev.floofy.commons:gradle:2.1.1")
implementation(gradleApi())
}

// This is here so we do get the following warning:
// This is here, so we do get the following warning:
// > Task :buildSrc:compileKotlin
// 'compileJava' task (current target is 17) and 'compileKotlin' task (current target is 1.8) jvm target compatibility should be set to the same Java version.
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_17.toString()
}
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/library.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dependencies {
api("org.slf4j:slf4j-api:1.7.36")

// Noel Utils
implementation("dev.floofy.commons:slf4j:2.1.0.1")
implementation("dev.floofy.commons:slf4j:2.1.1")

// Testing utilities
testImplementation("io.kotest:kotest-runner-junit5:5.3.0")
Expand Down
2 changes: 1 addition & 1 deletion loader-koin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ plugins {
}

dependencies {
implementation("dev.floofy.commons:extensions-koin:2.1.0.1")
implementation("dev.floofy.commons:extensions-koin:2.1.1")
api("io.insert-koin:koin-core:3.2.0")
}

0 comments on commit f6c9654

Please sign in to comment.