Skip to content

Commit

Permalink
Bump dependencies + clean up gradle script
Browse files Browse the repository at this point in the history
  • Loading branch information
ashtanko committed Jan 8, 2025
1 parent 05b06ce commit 5dc3bc2
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 15 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,7 @@ kover:
diktat:
./gradlew diktatCheck

detekt:
./gradlew detekt

.DEFAULT_GOAL := default
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Feel free to open a issue or submit a pull request for any bugs/improvements.

## Findings (0)

generated with [detekt version 1.23.6](https://detekt.dev/) on 2024-09-18 21:00:45 UTC
generated with [detekt version 1.23.7](https://detekt.dev/) on 2025-01-08 00:08:53 UTC

# License

Expand Down
3 changes: 0 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ import org.jlleitschuh.gradle.ktlint.reporter.ReporterType

val projectJvmTarget = 17
val satisfyingNumberOfCores = Runtime.getRuntime().availableProcessors().div(2).takeIf { it > 0 } ?: 1
val ktLintConfig: Configuration by configurations.creating
val outputDir = "${project.layout.buildDirectory}/reports/ktlint/"
val inputFiles = project.fileTree(mapOf("dir" to "src", "include" to "**/*.kt"))
val kotlinVersion = KOTLIN_2_0

fun isLinux(): Boolean {
Expand Down
22 changes: 11 additions & 11 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[versions]
coroutines = "1.9.0-RC.2" # https://github.com/Kotlin/kotlinx.coroutines
junit = "5.11.0-M2" # https://junit.org/junit5 | https://central.sonatype.com/artifact/org.junit.jupiter/junit-jupiter
kotlin = "2.0.20" # https://github.com/JetBrains/kotlin
mockk = "1.13.12" # https://mockk.io
detekt = "1.23.6" # https://github.com/detekt/detekt
dokka = "1.9.20" # https://github.com/Kotlin/dokka
spotless = "7.0.0.BETA2" # https://github.com/diffplug/spotless
coroutines = "1.10.1" # https://github.com/Kotlin/kotlinx.coroutines
junit = "5.11.4" # https://junit.org/junit5 | https://central.sonatype.com/artifact/org.junit.jupiter/junit-jupiter
kotlin = "2.1.0" # https://github.com/JetBrains/kotlin
mockk = "1.13.14" # https://mockk.io
detekt = "1.23.7" # https://github.com/detekt/detekt
dokka = "2.0.0" # https://github.com/Kotlin/dokka
spotless = "7.0.0" # https://github.com/diffplug/spotless
dependency = "1.32.0" # https://github.com/autonomousapps/dependency-analysis-gradle-plugin
pitest = "1.15.0" # https://plugins.gradle.org/plugin/info.solidsoft.pitest
pinterestKtlint = "0.49.0" # https://github.com/pinterest/ktlint
ktlint = "12.1.1" # https://github.com/JLLeitschuh/ktlint-gradle
assertj = "3.26.3" # https://mvnrepository.com/artifact/org.assertj/assertj-core | https://assertj.github.io/doc
kover = "0.8.3" # https://github.com/Kotlin/kotlinx-kover
ktlint = "12.1.2" # https://github.com/JLLeitschuh/ktlint-gradle
assertj = "3.27.2" # https://mvnrepository.com/artifact/org.assertj/assertj-core | https://assertj.github.io/doc
kover = "0.9.0" # https://github.com/Kotlin/kotlinx-kover
diktat = "2.0.0" # https://github.com/saveourtool/diktat
mockito = "5.13.0" # https://mvnrepository.com/artifact/org.mockito/mockito-core
mockito = "5.15.2" # https://mvnrepository.com/artifact/org.mockito/mockito-core
mockito_kotlin = "2.2.0" # https://mvnrepository.com/artifact/com.nhaarman.mockitokotlin2/mockito-kotlin

[libraries]
Expand Down
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
// https://gradle.org/releases/
rootProject.name = "kotlin-app-template"

0 comments on commit 5dc3bc2

Please sign in to comment.