Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependencies #4

Merged
merged 1 commit into from
Sep 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading