Skip to content

Commit

Permalink
Added kotlin support
Browse files Browse the repository at this point in the history
  • Loading branch information
mondokm committed Feb 13, 2024
1 parent 6bdc915 commit a5aead6
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions buildSrc/src/main/kotlin/kotlin-common.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformJvmPlugin
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
apply(plugin = "java-common")
apply<KotlinPlatformJvmPlugin>()
dependencies {
val implementation: Configuration by configurations
implementation(Deps.Kotlin.stdlib)
}
tasks {
withType<KotlinCompile>() {
kotlinOptions {
jvmTarget = "1.8"
}
}
}

0 comments on commit a5aead6

Please sign in to comment.