Skip to content

Commit a31743c

Browse files
authored
Merge pull request #154 from ashtanko/renovate/gradle-9.x
Update dependency gradle to v9
2 parents eff2388 + 20dce89 commit a31743c

File tree

3 files changed

+22
-24
lines changed

3 files changed

+22
-24
lines changed

build.gradle.kts

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
* limitations under the License.
1515
*/
1616

17-
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
1817
import io.gitlab.arturbosch.detekt.DetektCreateBaselineTask
1918
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
2019
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
@@ -45,7 +44,6 @@ private val compilerArgs = listOf(
4544
plugins {
4645
application
4746
jacoco
48-
id("com.github.johnrengelman.shadow") version "8.1.1"
4947
id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.18.1"
5048
idea
5149
alias(libs.plugins.kt.jvm)
@@ -137,22 +135,22 @@ kover {
137135
}
138136

139137
tasks {
140-
named("distZip") {
141-
dependsOn(withType<ShadowJar>())
142-
}
143-
144-
withType<ShadowJar> {
145-
print("Build Report Parser: $name")
146-
archiveFileName.set("detekt_report_parser.jar")
147-
archiveVersion.set("")
148-
archiveClassifier.set("")
149-
manifest {
150-
attributes(
151-
"Main-Class" to "dev.shtanko.report.ReportParserKt",
152-
"Implementation-Version" to project.version,
153-
)
154-
}
155-
}
138+
// named("distZip") {
139+
// dependsOn(withType<ShadowJar>())
140+
// }
141+
142+
// withType<ShadowJar> {
143+
// print("Build Report Parser: $name")
144+
// archiveFileName.set("detekt_report_parser.jar")
145+
// archiveVersion.set("")
146+
// archiveClassifier.set("")
147+
// manifest {
148+
// attributes(
149+
// "Main-Class" to "dev.shtanko.report.ReportParserKt",
150+
// "Implementation-Version" to project.version,
151+
// )
152+
// }
153+
// }
156154

157155
withType<Test> {
158156
maxParallelForks = 1

gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
[versions]
22
coroutines = "1.10.2" # https://github.com/Kotlin/kotlinx.coroutines
33
junit = "5.13.4" # https://junit.org/junit5 | https://central.sonatype.com/artifact/org.junit.jupiter/junit-jupiter
4-
kotlin = "2.2.0" # https://github.com/JetBrains/kotlin
4+
kotlin = "2.2.0" # https://github.com/JetBrains/kotlin
55
detekt = "1.23.8" # https://github.com/detekt/detekt
66
dokka = "2.0.0" # https://github.com/Kotlin/dokka
77
spotless = "7.2.1" # https://github.com/diffplug/spotless
88
dependency = "1.33.0" # https://github.com/autonomousapps/dependency-analysis-gradle-plugin
9-
pitest = "1.15.0" # https://plugins.gradle.org/plugin/info.solidsoft.pitest
9+
pitest = "1.19.0-rc.1" # https://plugins.gradle.org/plugin/info.solidsoft.pitest
1010
ktlint = "13.0.0" # https://github.com/JLLeitschuh/ktlint-gradle
1111
kapt = "2.1.0" # https://kotlinlang.org/docs/kapt.html
1212
slf4j = "2.0.17" # https://www.slf4j.org TODO remove
1313
rxjava = "3.1.11" # https://github.com/ReactiveX/RxJava
1414
rxkotlin = "3.0.1" # https://github.com/ReactiveX/RxKotlin
1515
lincheck = "2.29" # https://github.com/JetBrains/lincheck
1616
serialization = "1.9.0" # https://github.com/Kotlin/kotlinx.serialization
17-
retrofit = "3.0.0" # https://github.com/square/retrofit
18-
okhttp = "5.1.0" # https://square.github.io/okhttp/changelogs/changelog
19-
dagger = "2.57" # https://dagger.dev
17+
retrofit = "3.0.0" # https://github.com/square/retrofit
18+
okhttp = "5.1.0" # https://square.github.io/okhttp/changelogs/changelog
19+
dagger = "2.57" # https://dagger.dev
2020
jmh = "1.37" # https://github.com/openjdk/jmh
2121
kotlintest = "3.4.2" # https://mvnrepository.com/artifact/io.kotlintest/kotlintest-core
2222
kotest = "5.9.1" # https://kotest.io

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)