Skip to content

Commit

Permalink
chore(deps): update dependencies (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Malinskiy authored Sep 21, 2024
1 parent 50baac3 commit 6d9ffe1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object Versions {
val marathon = System.getenv("MARATHON_VERSION") ?: "0.10.1"
val marathon = System.getenv("MARATHON_VERSION") ?: "0.10.2"

val kotlin = "1.9.10"

Expand All @@ -8,7 +8,7 @@ object Versions {
val junitGradle = "1.2.0"
val androidGradleVersion = "8.2.2"
val gradlePluginPublish = "1.2.1"
val gradlePluginShadow = "8.1.1"
val gradlePluginShadow = "8.3.2"
val gradlePluginDownload = "5.6.0"

val junit5 = "5.10.1"
Expand Down
2 changes: 1 addition & 1 deletion marathon-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
`kotlin-dsl`
id("org.jetbrains.dokka")
id("com.gradle.plugin-publish") version Versions.gradlePluginPublish
id("com.github.johnrengelman.shadow") version Versions.gradlePluginShadow
id("com.gradleup.shadow") version Versions.gradlePluginShadow
id("de.undercouch.download") version Versions.gradlePluginDownload
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ fun Wrapper.toList(): List<TestFilterConfiguration> {
mutableList.addAll(it)
}
if (allureTestFilter) {
mutableList.add(TestFilterConfiguration.AllureFilterConfiguration)
mutableList.add(TestFilterConfiguration.AllureFilterConfiguration())
}
return mutableList
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import java.io.File


class CachingTest {
val GRADLE_VERSION = "7.6.1"
val GRADLE_VERSION = "7.6.4"

@Test
fun testUnpackingIsCached() {
Expand Down

0 comments on commit 6d9ffe1

Please sign in to comment.